ARTEMIS-4357 Replacing logger(222188).warn by a logger.debug

This commit is contained in:
Clebert Suconic 2023-07-10 10:59:23 -04:00 committed by Justin Bertram
parent 6ee27224a5
commit 420f386fd2
1 changed files with 3 additions and 1 deletions

View File

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