Author: ritchiem
Date: Thu Oct 5 05:04:45 2006
New Revision: 453196
URL: http://svn.apache.org/viewvc?view=rev&rev=453196
Log:
Changed flow control information out put to be debug level as it is output a
lot when flow control starts.
Modified:
incubator/qpid/trunk/qpid/java/broker/src/org/apache/qpid/server/AMQChannel.java
Modified:
incubator/qpid/trunk/qpid/java/broker/src/org/apache/qpid/server/AMQChannel.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/broker/src/org/apache/qpid/server/AMQChannel.java?view=diff&rev=453196&r1=453195&r2=453196
==============================================================================
---
incubator/qpid/trunk/qpid/java/broker/src/org/apache/qpid/server/AMQChannel.java
(original)
+++
incubator/qpid/trunk/qpid/java/broker/src/org/apache/qpid/server/AMQChannel.java
Thu Oct 5 05:04:45 2006
@@ -518,7 +518,7 @@
{
if (wasSuspended)
{
- _log.info("Unsuspending channel " + this);
+ _log.debug("Unsuspending channel " + this);
//may need to deliver queued messages
for (AMQQueue q : _consumerTag2QueueMap.values())
{
@@ -527,7 +527,7 @@
}
else
{
- _log.info("Suspending channel " + this);
+ _log.debug("Suspending channel " + this);
}
}
}