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

bbeaudreault 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 ad395b49ff0 HBASE-27391 Downgrade ERROR log to DEBUG in 
ConnectionUtils.updateStats (#4804)
ad395b49ff0 is described below

commit ad395b49ff050ef44bd5964e78ac26a1b67dd71b
Author: Bryan Beaudreault <[email protected]>
AuthorDate: Wed Sep 28 11:31:39 2022 -0400

    HBASE-27391 Downgrade ERROR log to DEBUG in ConnectionUtils.updateStats 
(#4804)
    
    Signed-off-by: Duo Zhang <[email protected]>
---
 .../main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
index aaeece8d8fc..5c88af3780c 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
@@ -604,8 +604,10 @@ public final class ConnectionUtils {
     resp.getResults().forEach((regionName, regionResult) -> {
       ClientProtos.RegionLoadStats stat = regionResult.getStat();
       if (stat == null) {
-        LOG.error("No ClientProtos.RegionLoadStats found for server={}, 
region={}", serverName,
-          Bytes.toStringBinary(regionName));
+        if (LOG.isDebugEnabled()) {
+          LOG.debug("No ClientProtos.RegionLoadStats found for server={}, 
region={}", serverName,
+            Bytes.toStringBinary(regionName));
+        }
         return;
       }
       RegionLoadStats regionLoadStats = 
ProtobufUtil.createRegionLoadStats(stat);

Reply via email to