You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2020/02/22 06:53:15 UTC

[activemq] 02/08: Fix inconsistent 'info'-level logger calls

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

jbonofre pushed a commit to branch activemq-5.15.x
in repository https://gitbox.apache.org/repos/asf/activemq.git

commit 76c19d4eb677b8e2170ea9de4c81bf7a5f217779
Author: Daniel Trebbien <dt...@gmail.com>
AuthorDate: Fri Jul 28 19:47:35 2017 -0700

    Fix inconsistent 'info'-level logger calls
    
    Some calls to info() were guarded by checks that logging at the trace
    level is enabled.
    
    These issues were found by SLF4J Helper for NetBeans IDE:
    http://plugins.netbeans.org/plugin/72557/
    
    (cherry picked from commit 6d36c490e5ddaeed92632dbb4f3ca8773a8a5bfa)
---
 .../apache/activemq/store/kahadb/MultiKahaDBPersistenceAdapter.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/MultiKahaDBPersistenceAdapter.java b/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/MultiKahaDBPersistenceAdapter.java
index 56e5e92..b1ee0b1 100644
--- a/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/MultiKahaDBPersistenceAdapter.java
+++ b/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/MultiKahaDBPersistenceAdapter.java
@@ -198,7 +198,7 @@ public class MultiKahaDBPersistenceAdapter extends LockableServiceSupport implem
         if (filteredAdapter.getDestination() == matchAll && filteredAdapter.isPerDestination()) {
             filteredAdapter = addAdapter(filteredAdapter, destination);
             if (LOG.isTraceEnabled()) {
-                LOG.info("created per destination adapter for: " + destination  + ", " + result);
+                LOG.trace("created per destination adapter for: " + destination  + ", " + result);
             }
         }
         startAdapter(filteredAdapter.getPersistenceAdapter(), destination.getQualifiedName());
@@ -330,11 +330,11 @@ public class MultiKahaDBPersistenceAdapter extends LockableServiceSupport implem
         if (adapterDir != null) {
             if (IOHelper.deleteFile(adapterDir)) {
                 if (LOG.isTraceEnabled()) {
-                    LOG.info("deleted per destination adapter directory for: " + destination);
+                    LOG.trace("deleted per destination adapter directory for: " + destination);
                 }
             } else {
                 if (LOG.isTraceEnabled()) {
-                    LOG.info("failed to deleted per destination adapter directory for: " + destination);
+                    LOG.trace("failed to deleted per destination adapter directory for: " + destination);
                 }
             }
         }