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 46a18833a0
commit d4c23ee0c6
No known key found for this signature in database
GPG Key ID: 5CD818B19CC299A3

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