[jboss-cvs] JBoss Messaging SVN: r7665 - trunk/src/main/org/jboss/messaging/core/remoting/impl.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 5 08:44:13 EDT 2009


Author: jmesnil
Date: 2009-08-05 08:44:13 -0400 (Wed, 05 Aug 2009)
New Revision: 7665

Modified:
   trunk/src/main/org/jboss/messaging/core/remoting/impl/RemotingConnectionImpl.java
Log:
JBMESSAGING-1699: Server fails with message "Did not receive initial ping for connection"

* display the connection's remote address in the warning logs & exception

Modified: trunk/src/main/org/jboss/messaging/core/remoting/impl/RemotingConnectionImpl.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/remoting/impl/RemotingConnectionImpl.java	2009-08-04 15:03:14 UTC (rev 7664)
+++ trunk/src/main/org/jboss/messaging/core/remoting/impl/RemotingConnectionImpl.java	2009-08-05 12:44:13 UTC (rev 7665)
@@ -238,7 +238,7 @@
          destroyed = true;
       }
 
-      log.warn("Connection failure has been detected " + me.getMessage() + ":" + me.getCode());
+      log.warn("Connection failure has been detected: " + me.getMessage() + " [code=" + me.getCode() + "]");
 
       // Then call the listeners
       callFailureListeners(me);




More information about the jboss-cvs-commits mailing list