You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2020/05/28 14:15:10 UTC

[pulsar] branch master updated: Change autoTopicCreateOverride/autoSubscriptionOverride log level to debug. (#7080)

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

penghui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new a4a4a18  Change autoTopicCreateOverride/autoSubscriptionOverride log level to debug. (#7080)
a4a4a18 is described below

commit a4a4a18d575769f7dd70e08ca9dca86d2c6551ff
Author: lipenghui <pe...@apache.org>
AuthorDate: Thu May 28 22:15:00 2020 +0800

    Change autoTopicCreateOverride/autoSubscriptionOverride log level to debug. (#7080)
---
 .../src/main/java/org/apache/pulsar/broker/service/BrokerService.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java
index 7001523..dd92af7 100644
--- a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java
+++ b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/BrokerService.java
@@ -2183,7 +2183,7 @@ public class BrokerService implements Closeable, ZooKeeperCacheListener<Policies
             log.warn("Got exception when reading autoTopicCreateOverride policy for {}: {};", topicName, t.getMessage(), t);
             return null;
         }
-        log.warn("No autoTopicCreateOverride policy found for {}", topicName);
+        log.debug("No autoTopicCreateOverride policy found for {}", topicName);
         return null;
     }
 
@@ -2214,7 +2214,7 @@ public class BrokerService implements Closeable, ZooKeeperCacheListener<Policies
             log.warn("Got exception when reading autoSubscriptionCreateOverride policy for {}: {};", topicName, t.getMessage(), t);
             return null;
         }
-        log.warn("No autoSubscriptionCreateOverride policy found for {}", topicName);
+        log.debug("No autoSubscriptionCreateOverride policy found for {}", topicName);
         return null;
     }
 }