You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2016/04/18 15:54:09 UTC

activemq git commit: AMQ-6248 fix logging statement to use the connected URI.

Repository: activemq
Updated Branches:
  refs/heads/master 23a5beb86 -> 3560d9123


AMQ-6248 fix logging statement to use the connected URI.

Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/3560d912
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/3560d912
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/3560d912

Branch: refs/heads/master
Commit: 3560d9123dbeecc97f075a6812f15b2484836275
Parents: 23a5beb
Author: Timothy Bish <ta...@gmail.com>
Authored: Mon Apr 18 09:53:59 2016 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Mon Apr 18 09:53:59 2016 -0400

----------------------------------------------------------------------
 .../org/apache/activemq/transport/failover/FailoverTransport.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/3560d912/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransport.java
----------------------------------------------------------------------
diff --git a/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransport.java b/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransport.java
index c0bc9da..f502179 100755
--- a/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransport.java
+++ b/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransport.java
@@ -276,7 +276,7 @@ public class FailoverTransport implements CompositeTransport {
                 }
 
                 LOG.warn("Transport ({}) failed {} attempting to automatically reconnect: {}",
-                         connectedTransport, (reconnectOk ? "," : ", not"), e);
+                         connectedTransportURI, (reconnectOk ? "," : ", not"), e);
 
                 failedConnectTransportURI = connectedTransportURI;
                 connectedTransportURI = null;