ARTEMIS-4357 Replacing logger(222188).warn by a logger.debug
This commit is contained in:
parent
6ee27224a5
commit
420f386fd2
|
@ -2780,7 +2780,9 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
|
|||
return true;
|
||||
}
|
||||
|
||||
ActiveMQServerLogger.LOGGER.unableToFindTargetQueue(originalMessageQueue);
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("QueueImpl::retryMessages cannot find targetQueue for message {}", ref.getMessage());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue