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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 22 11:19:53 EDT 2008


Author: jmesnil
Date: 2008-04-22 11:19:53 -0400 (Tue, 22 Apr 2008)
New Revision: 4099

Modified:
   trunk/src/main/org/jboss/messaging/core/server/impl/ConnectionManagerImpl.java
Log:
in dump(), display the connection's client address

Modified: trunk/src/main/org/jboss/messaging/core/server/impl/ConnectionManagerImpl.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/server/impl/ConnectionManagerImpl.java	2008-04-22 14:39:53 UTC (rev 4098)
+++ trunk/src/main/org/jboss/messaging/core/server/impl/ConnectionManagerImpl.java	2008-04-22 15:19:53 UTC (rev 4099)
@@ -189,7 +189,7 @@
             buff.append("    "  + entry.getKey() + "----->\n");
             for (ServerConnection sce : connectionEndpoints)
             {
-               buff.append("        " + sce + " (" + System.identityHashCode(sce) + ")\n");
+               buff.append("        " + sce + " (" + System.identityHashCode(sce) + ") " + sce.getClientAddress() + "\n");
             }
          }
          buff.append("*** Dumped connections");




More information about the jboss-cvs-commits mailing list