This is an automated email from the ASF dual-hosted git repository.
jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 420f386fd2 ARTEMIS-4357 Replacing logger(222188).warn by a logger.debug
420f386fd2 is described below
commit 420f386fd2e276db3198ab1847243691fee34659
Author: Clebert Suconic <[email protected]>
AuthorDate: Mon Jul 10 10:59:23 2023 -0400
ARTEMIS-4357 Replacing logger(222188).warn by a logger.debug
---
.../java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java
index c3ad85eb38..7ded73cf11 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/QueueImpl.java
@@ -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;
}
});