Skip to content

Commit

Permalink
removes info logging
Browse files Browse the repository at this point in the history
refs #7555
  • Loading branch information
robfrank committed Jul 17, 2017
1 parent ca40039 commit ce94053
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ private void scheduleCommitTask() {
commitTask = new TimerTask() {
@Override
public boolean cancel() {
OLogManager.instance().info(this, " Cancelling commit task for index:: " + indexName());
// OLogManager.instance().info(this, " Cancelling commit task for index:: " + indexName());
return super.cancel();
}

Expand All @@ -150,12 +150,12 @@ public void run() {

if (System.currentTimeMillis() - lastAccess.get() > closeAfterInterval) {

OLogManager.instance().info(this, " Closing index:: " + indexName());
// OLogManager.instance().info(this, " Closing index:: " + indexName());
close();
}
if (!closed.get()) {

OLogManager.instance().info(this, " Flushing index:: " + indexName());
// OLogManager.instance().info(this, " Flushing index:: " + indexName());
flush();
}
}
Expand Down

0 comments on commit ce94053

Please sign in to comment.