This is an automated email from the ASF dual-hosted git repository.
clebertsuconic 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 00efad3a1e NO-JIRA fixing a gate on isTraceEnabled
00efad3a1e is described below
commit 00efad3a1e6be3d6d2ccee5a72a385c265bf2aa4
Author: Clebert Suconic <[email protected]>
AuthorDate: Thu Dec 5 16:26:44 2024 -0500
NO-JIRA fixing a gate on isTraceEnabled
---
.../artemis/core/paging/cursor/impl/PageCounterRebuildManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/cursor/impl/PageCounterRebuildManager.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/cursor/impl/PageCounterRebuildManager.java
index cdb7ded883..6371c7001a 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/cursor/impl/PageCounterRebuildManager.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/cursor/impl/PageCounterRebuildManager.java
@@ -200,7 +200,7 @@ public class PageCounterRebuildManager implements Runnable {
logger.debug("Rebuilding page counter for address {}",
pgStore.getAddress());
for (long pgid = pgStore.getFirstPage(); pgid <= limitPageId; pgid++) {
- if (logger.isDebugEnabled()) {
+ if (logger.isTraceEnabled()) {
logger.trace("Rebuilding counter on messages from page {} on
rebuildCounters for address {}", pgid, pgStore.getAddress());
}
logger.debug("{} reading paging {} of {}", pgStore.getAddress(),
pgid, limitPageId);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact