[hornetq-commits] JBoss hornetq SVN: r8443 - trunk/src/main/org/hornetq/core/server/cluster/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Sat Nov 28 04:52:53 EST 2009


Author: jmesnil
Date: 2009-11-28 04:52:53 -0500 (Sat, 28 Nov 2009)
New Revision: 8443

Modified:
   trunk/src/main/org/hornetq/core/server/cluster/impl/BridgeImpl.java
Log:
log exception if the bridge creation fails

Modified: trunk/src/main/org/hornetq/core/server/cluster/impl/BridgeImpl.java
===================================================================
--- trunk/src/main/org/hornetq/core/server/cluster/impl/BridgeImpl.java	2009-11-28 08:48:09 UTC (rev 8442)
+++ trunk/src/main/org/hornetq/core/server/cluster/impl/BridgeImpl.java	2009-11-28 09:52:53 UTC (rev 8443)
@@ -687,7 +687,7 @@
       }
       catch (Exception e)
       {
-         log.warn("Bridge " + name + " is unable to connect to destination. It will be disabled.");
+         log.warn("Bridge " + name + " is unable to connect to destination. It will be disabled.", e);
 
          return false;
       }



More information about the hornetq-commits mailing list