Skip to content

Commit

Permalink
changed info log to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wang committed Jan 4, 2011
1 parent 75f4b00 commit b02c78a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions java/proj/zoie/impl/indexing/MemoryStreamDataProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,13 @@ public void flush()
try
{
V maxVersion = _maxVersion;
log.info("flushing version: " + maxVersion);
if (log.isDebugEnabled()){
log.debug("flushing version: " + maxVersion);
}
super.syncWithVersion(3600000, maxVersion);
log.info("flushing version: " + maxVersion + " done");
if (log.isDebugEnabled()){
log.info("flushing version: " + maxVersion + " done");
}
} catch (ZoieException e)
{
log.error("flush timeout", e);
Expand Down

0 comments on commit b02c78a

Please sign in to comment.