You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2014/02/05 12:26:14 UTC

git commit: ensure stack trace is in trace logging of exception

Updated Branches:
  refs/heads/trunk e102e64e9 -> 146fb1210


ensure stack trace is in trace logging of exception


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

Branch: refs/heads/trunk
Commit: 146fb121086f5aee41c58785e57199ee7a6a95e4
Parents: e102e64
Author: gtully <ga...@gmail.com>
Authored: Wed Jan 29 12:44:51 2014 +0000
Committer: gtully <ga...@gmail.com>
Committed: Wed Feb 5 11:25:44 2014 +0000

----------------------------------------------------------------------
 .../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/146fb121/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 955a190..e9ce12c 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
@@ -243,7 +243,7 @@ public class FailoverTransport implements CompositeTransport {
     public final void handleTransportFailure(IOException e) throws InterruptedException {
         synchronized (reconnectMutex) {
             if (LOG.isTraceEnabled()) {
-                LOG.trace(this + " handleTransportFailure: " + e);
+                LOG.trace(this + " handleTransportFailure: " + e, e);
             }
 
             Transport transport = connectedTransport.getAndSet(null);