[hornetq-commits] JBoss hornetq SVN: r11391 - branches/one-offs/HornetQ_2_2_5_EAP_GA_JBPAPP_7242/src/main/org/hornetq/core/server/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Sep 21 15:41:00 EDT 2011


Author: clebert.suconic at jboss.com
Date: 2011-09-21 15:40:59 -0400 (Wed, 21 Sep 2011)
New Revision: 11391

Modified:
   branches/one-offs/HornetQ_2_2_5_EAP_GA_JBPAPP_7242/src/main/org/hornetq/core/server/impl/ServerSessionImpl.java
Log:
changing a warn message

Modified: branches/one-offs/HornetQ_2_2_5_EAP_GA_JBPAPP_7242/src/main/org/hornetq/core/server/impl/ServerSessionImpl.java
===================================================================
--- branches/one-offs/HornetQ_2_2_5_EAP_GA_JBPAPP_7242/src/main/org/hornetq/core/server/impl/ServerSessionImpl.java	2011-09-21 19:40:01 UTC (rev 11390)
+++ branches/one-offs/HornetQ_2_2_5_EAP_GA_JBPAPP_7242/src/main/org/hornetq/core/server/impl/ServerSessionImpl.java	2011-09-21 19:40:59 UTC (rev 11391)
@@ -1049,7 +1049,10 @@
 
       if (consumer == null)
       {
-         ServerSessionImpl.log.error("There is no consumer with id " + consumerID);
+         if (log.isDebugEnabled())
+         {
+            ServerSessionImpl.log.debug("There is no consumer with id " + consumerID);
+         }
 
          return;
       }



More information about the hornetq-commits mailing list