You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/05/23 09:29:31 UTC

[GitHub] [pulsar] hapihu opened a new issue #4350: Not enough arguments for Logger's method

hapihu opened a new issue #4350: Not enough arguments for Logger's method
URL: https://github.com/apache/pulsar/issues/4350
 
 
   There is not enough parameters when calling the Logger interface.
   
   1. File: pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/ClustersBase.java
   ```java
   //line373 
   log.info("[{}] Cannot find NamespaceIsolationPolicy {} for cluster {}", policyName, cluster);
   ```
   2. File:pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/NamespacesBase.java
   ```java
   //line577
   log.info("[{}] Successfully unloaded all the bundles in namespace {}/{}/{}", clientAppId(), namespaceName);
   
   //line1220
   log.warn("[{}] Failed to update subscription auth mode for namespace {}/{}/{}: concurrent modification",
                       clientAppId(), namespaceName);
   
   //line1226
   log.error("[{}] Failed to update subscription auth mode for namespace {}/{}/{}", clientAppId(),
                       namespaceName, e);
   ```
   3. File:pulsar-broker/src/main/java/org/apache/pulsar/broker/loadbalance/LoadManager.java
   ```java
   //line146
   log.warn("Error when trying to create load manager: {}");
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services