Author: clebert.suconic(a)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;
}