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:
Michael Stack 2008-07-23 23:51:49 +00:00
parent f8c8835c7d
commit febd92015a
1 changed files with 4 additions and 2 deletions

View File

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