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:
Robert Davies 2006-04-03 14:23:51 +00:00
parent 1ffd9f88a9
commit 39ad4a84cb
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}
}