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 2022/10/16 06:04:12 UTC

[activemq-artemis] branch main updated: NO-JIRA Debug statement on paging manager

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 e1e728a28e NO-JIRA Debug statement on paging manager
e1e728a28e is described below

commit e1e728a28ee7e4bd3fb36effc9e80d9b31ce2f3b
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Sun Oct 16 02:02:19 2022 -0400

    NO-JIRA Debug statement on paging manager
---
 .../org/apache/activemq/artemis/core/paging/impl/PagingManagerImpl.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/PagingManagerImpl.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/PagingManagerImpl.java
index 6f59f42f96..59db0da45f 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/PagingManagerImpl.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/paging/impl/PagingManagerImpl.java
@@ -515,7 +515,9 @@ public final class PagingManagerImpl implements PagingManager {
 
    @Override
    public void processReload() throws Exception {
+      logger.debug("Processing reload");
       for (PagingStore store : stores.values()) {
+         logger.debug("Processing reload on page store {}", store.getAddress());
          store.processReload();
       }
    }