[hornetq-commits] JBoss hornetq SVN: r10823 - branches/Branch_2_2_EAP_cluster_clean2/src/main/org/hornetq/core/protocol/core/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Jun 16 21:49:13 EDT 2011


Author: clebert.suconic at jboss.com
Date: 2011-06-16 21:49:13 -0400 (Thu, 16 Jun 2011)
New Revision: 10823

Modified:
   branches/Branch_2_2_EAP_cluster_clean2/src/main/org/hornetq/core/protocol/core/impl/RemotingConnectionImpl.java
Log:
debug & tracing

Modified: branches/Branch_2_2_EAP_cluster_clean2/src/main/org/hornetq/core/protocol/core/impl/RemotingConnectionImpl.java
===================================================================
--- branches/Branch_2_2_EAP_cluster_clean2/src/main/org/hornetq/core/protocol/core/impl/RemotingConnectionImpl.java	2011-06-17 01:48:56 UTC (rev 10822)
+++ branches/Branch_2_2_EAP_cluster_clean2/src/main/org/hornetq/core/protocol/core/impl/RemotingConnectionImpl.java	2011-06-17 01:49:13 UTC (rev 10823)
@@ -145,9 +145,28 @@
       this.creationTime = System.currentTimeMillis();
    }
 
+   
+   
+   
    // RemotingConnection implementation
    // ------------------------------------------------------------
 
+   /* (non-Javadoc)
+    * @see java.lang.Object#toString()
+    */
+   @Override
+   public String toString()
+   {
+      return "RemotingConnectionImpl [clientID=" + clientID +
+             ", decoder=" +
+             decoder +
+             ", nodeID=" +
+             nodeID +
+             ", transportConnection=" +
+             transportConnection +
+             "]";
+   }
+
    public Connection getTransportConnection()
    {
       return transportConnection;



More information about the hornetq-commits mailing list