HBASE-23250 Log message about CleanerChore delegate initialization should be at INFO

Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
This commit is contained in:
ravowlga123 2019-11-05 20:21:16 +01:00 committed by Jan Hentschel
parent 10cc64a7d6
commit 56e63b106c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}