Change message on compactions to be DEBUG level
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@679236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f8c8835c7d
commit
febd92015a
|
@ -789,8 +789,10 @@ public class HStore implements HConstants {
|
|||
}
|
||||
filesToCompact = new ArrayList<HStoreFile>(filesToCompact.subList(point,
|
||||
countOfFiles));
|
||||
LOG.info("Compaction size " + totalSize + ", skipped " + point +
|
||||
", " + skipped);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Compaction size " + totalSize + ", skipped " + point +
|
||||
", " + skipped);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue