HBASE-834 Removed redundant logging

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@690424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-08-29 23:38:04 +00:00
parent 99f695beda
commit 776b740aa4
1 changed files with 0 additions and 4 deletions

View File

@ -778,10 +778,6 @@ public class HStore implements HConstants {
if (!majorCompaction) {
Path mapdir = HStoreFile.getMapDir(basedir, info.getEncodedName(), family.getName());
long lowTimestamp = getLowestTimestamp(fs, mapdir);
if (LOG.isDebugEnabled() && lowTimestamp > 0l) {
LOG.debug("Time since last major compaction on store " + this.storeNameStr +
": " + ((System.currentTimeMillis() - lowTimestamp)/1000) + " seconds");
}
lastMajorCompaction = System.currentTimeMillis() - lowTimestamp;
if (lowTimestamp < (System.currentTimeMillis() - majorCompactionTime) &&
lowTimestamp > 0l) {