move Discarding debug statement to debug log level. patch by jbellis

git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@957038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Ellis 2010-06-22 21:29:01 +00:00
parent a897bbc887
commit 45254e10cc
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ public class ColumnFamilyStore implements ColumnFamilyStoreMBean
// if we're not writing to the commit log, we are replaying the log, so marking
// the log header with "you can discard anything written before the context" is not valid
final int cfId = DatabaseDescriptor.getTableMetaData(table_).get(columnFamily_).cfId;
logger_.info("Discarding " + cfId);
logger_.debug("Discarding {}", cfId);
CommitLog.instance().discardCompletedSegments(cfId, ctx);
}
}