mirror of https://github.com/apache/activemq.git
change some frequent info logging to debug
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@391054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ffd9f88a9
commit
39ad4a84cb
|
@ -64,7 +64,9 @@ abstract public class PrefetchSubscription extends AbstractSubscription{
|
|||
}else{
|
||||
synchronized(pending){
|
||||
if( pending.isEmpty() )
|
||||
log.info("Prefetch limit.");
|
||||
if (log.isDebugEnabled()){
|
||||
log.debug("Prefetch limit.");
|
||||
}
|
||||
pending.addLast(node);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue