ARTEMIS-4278 Removing System.out left by accident
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 21e1e9e..63b02fe 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
@@ -580,7 +580,12 @@
       Map<Long, PageTransactionInfo> transactionsSet = new LongObjectHashMap();
       // making a copy
       transactions.forEach(transactionsSet::put);
-      transactionsSet.forEach((a, b) -> System.out.println(a + " = " + b));
+
+      if (logger.isDebugEnabled()) {
+         logger.debug("Page Transactions during rebuildCounters:");
+         transactionsSet.forEach((a, b) -> logger.debug("{} = {}", a, b));
+      }
+
       stores.forEach((address, pgStore) -> {
          PageCounterRebuildManager rebuildManager = new PageCounterRebuildManager(this, pgStore, transactionsSet, storedLargeMessages);
          logger.debug("Setting destination {} to rebuild counters", address);