You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by pa...@apache.org on 2021/01/08 14:06:20 UTC

[hbase] branch branch-2.3 updated: HBASE-25483 set the loadMeta log level to debug (#2859)

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

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


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new ed36726  HBASE-25483 set the loadMeta log level to debug (#2859)
ed36726 is described below

commit ed367267c1035c16104943377d0f40aa7a9498b8
Author: Bo Cui <cu...@163.com>
AuthorDate: Fri Jan 8 21:57:23 2021 +0800

    HBASE-25483 set the loadMeta log level to debug (#2859)
    
    Signed-off-by: Pankaj Kumar<pa...@apache.org>
    (cherry picked from commit a348204d4a77c0e15ddfd459cecfc4d3427d0a63)
---
 .../org/apache/hadoop/hbase/master/assignment/RegionStateStore.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/RegionStateStore.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/RegionStateStore.java
index c353161..657e533 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/RegionStateStore.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/RegionStateStore.java
@@ -137,8 +137,7 @@ public class RegionStateStore {
       ServerName regionLocation = MetaTableAccessor.getTargetServerName(result, replicaId);
       final long openSeqNum = hrl.getSeqNum();
 
-      // TODO: move under trace, now is visible for debugging
-      LOG.info(
+      LOG.debug(
         "Load hbase:meta entry region={}, regionState={}, lastHost={}, " +
           "regionLocation={}, openSeqNum={}",
         regionInfo.getEncodedName(), state, lastHost, regionLocation, openSeqNum);