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/07/28 02:53:10 UTC

[activemq-artemis] branch main updated: ARTEMIS-3403 - wrong debug level in ArtemisMBeanServerGuard

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 57790a9  ARTEMIS-3403 - wrong debug level in ArtemisMBeanServerGuard
57790a9 is described below

commit 57790a93a929fa3fd7f41f60b2c3e1891e7c8ab2
Author: Andy Taylor <an...@gmail.com>
AuthorDate: Tue Jul 27 10:42:09 2021 +0100

    ARTEMIS-3403 - wrong debug level in ArtemisMBeanServerGuard
    
    https://issues.apache.org/jira/browse/ARTEMIS-3403
---
 .../artemis/core/server/management/ArtemisMBeanServerGuard.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/management/ArtemisMBeanServerGuard.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/management/ArtemisMBeanServerGuard.java
index 09d8ef1..57df5f7 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/management/ArtemisMBeanServerGuard.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/management/ArtemisMBeanServerGuard.java
@@ -133,7 +133,7 @@ public class ArtemisMBeanServerGuard implements InvocationHandler {
             return true;
          }
       }
-      ActiveMQServerLogger.LOGGER.info(object + " " + operationName + " " + false);
+      ActiveMQServerLogger.LOGGER.debug(object + " " + operationName + " " + false);
       return false;
    }