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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Apr 11 08:09:08 EDT 2008


Author: jmesnil
Date: 2008-04-11 08:09:08 -0400 (Fri, 11 Apr 2008)
New Revision: 4035

Modified:
   trunk/src/main/org/jboss/messaging/core/remoting/impl/PacketDispatcherImpl.java
Log:
* more meaningful log message in unregister() method

Modified: trunk/src/main/org/jboss/messaging/core/remoting/impl/PacketDispatcherImpl.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/remoting/impl/PacketDispatcherImpl.java	2008-04-11 12:07:59 UTC (rev 4034)
+++ trunk/src/main/org/jboss/messaging/core/remoting/impl/PacketDispatcherImpl.java	2008-04-11 12:09:08 UTC (rev 4035)
@@ -87,11 +87,11 @@
    {
       assertValidID(handlerID);
 
-      handlers.remove(handlerID);
+      PacketHandler handler = handlers.remove(handlerID);
       
       if (log.isDebugEnabled())
       {
-         log.debug("unregistered handler for " + handlerID);
+         log.debug("unregistered " + handler);
       }
       
       if (listener != null)




More information about the jboss-cvs-commits mailing list