From ce940531ecad94935f2cc89047072466789396ed Mon Sep 17 00:00:00 2001 From: Roberto Franchini Date: Mon, 17 Jul 2017 14:41:52 +0200 Subject: [PATCH] removes info logging refs https://github.com/orientechnologies/orientdb/issues/7555 --- .../lucene/engine/OLuceneIndexEngineAbstract.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lucene/src/main/java/com/orientechnologies/lucene/engine/OLuceneIndexEngineAbstract.java b/lucene/src/main/java/com/orientechnologies/lucene/engine/OLuceneIndexEngineAbstract.java index 89d769aa969..371d600c1eb 100644 --- a/lucene/src/main/java/com/orientechnologies/lucene/engine/OLuceneIndexEngineAbstract.java +++ b/lucene/src/main/java/com/orientechnologies/lucene/engine/OLuceneIndexEngineAbstract.java @@ -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(); } @@ -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(); } }