You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2021/02/03 15:19:41 UTC

[activemq-artemis] branch master updated: NO-JIRA fixed debug message

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c611a6  NO-JIRA fixed debug message
     new 7a199d7  This closes #3429
4c611a6 is described below

commit 4c611a6670f23e794881d9c721da617168324181
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Wed Feb 3 11:48:27 2021 +0000

    NO-JIRA fixed debug message
---
 .../main/java/org/apache/activemq/artemis/core/paging/impl/Page.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/Page.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/Page.java
index 7b2314d..099caf7 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/Page.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/Page.java
@@ -528,7 +528,7 @@ public final class Page implements Comparable<Page> {
       }
 
       if (logger.isDebugEnabled()) {
-         logger.debugf("Deleting pageNr=%d on store %d", pageId, storeName);
+         logger.debugf("Deleting pageNr=%d on store %s", pageId, storeName);
       }
 
       final List<Long> largeMessageIds;
@@ -637,4 +637,4 @@ public final class Page implements Comparable<Page> {
 
       return pendingCounters;
    }
-}
\ No newline at end of file
+}