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

taklwu pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.5 by this push:
     new a38ffec51bf HBASE-27626 Suppress noisy logging in 
client.ConnectionImplementation (#5019)
a38ffec51bf is described below

commit a38ffec51bfb419c54872e33cc40fe7630ba4412
Author: Nihal Jain <nihaljain...@gmail.com>
AuthorDate: Thu Feb 9 23:59:32 2023 +0530

    HBASE-27626 Suppress noisy logging in client.ConnectionImplementation 
(#5019)
    
    Signed-off-by: Tak Lon (Stephen) Wu <tak...@apache.org>
---
 .../java/org/apache/hadoop/hbase/client/ConnectionImplementation.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java
index 1723398dcdf..4dc016ba7e9 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java
@@ -417,7 +417,7 @@ public class ConnectionImplementation implements 
ClusterConnection, Closeable {
         return false;
       }
       try {
-        LOG.info("Getting master state using rpc call");
+        LOG.trace("Getting master state using rpc call");
         return this.masterServiceState.isMasterRunning();
       } catch (UndeclaredThrowableException e) {
         // It's somehow messy, but we can receive exceptions such as
@@ -2001,7 +2001,7 @@ public class ConnectionImplementation implements 
ClusterConnection, Closeable {
   }
 
   private boolean isKeepAliveMasterConnectedAndRunning() {
-    LOG.info("Getting master connection state from TTL Cache");
+    LOG.trace("Getting master connection state from TTL Cache");
     return masterStateSupplier.get();
   }
 

Reply via email to