You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2019/11/05 19:34:47 UTC

[hbase] branch branch-2.2 updated: HBASE-23250 Log message about CleanerChore delegate initialization should be at INFO

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

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


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new a1cc450  HBASE-23250 Log message about CleanerChore delegate initialization should be at INFO
a1cc450 is described below

commit a1cc450110fa239785c96ae330c3650f235eadaa
Author: ravowlga123 <ra...@gmail.com>
AuthorDate: Tue Nov 5 20:21:16 2019 +0100

    HBASE-23250 Log message about CleanerChore delegate initialization should be at INFO
    
    Signed-off-by: Jan Hentschel <ja...@ultratendency.com>
---
 .../main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
index 8872ac4..8f8c13e 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
@@ -154,7 +154,7 @@ public abstract class CleanerChore<T extends FileCleanerDelegate> extends Schedu
       for (String className : logCleaners) {
         T logCleaner = newFileCleaner(className, conf);
         if (logCleaner != null) {
-          LOG.debug("Initialize cleaner={}", className);
+          LOG.info("Initialize cleaner={}", className);
           this.cleanersChain.add(logCleaner);
         }
       }