From 5488543b8f8480d02223d0411ba5bed83554dee9 Mon Sep 17 00:00:00 2001 From: lotus Date: Thu, 10 Jul 2008 07:30:50 +0000 Subject: [PATCH] disabled disk usage logpoints git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4979 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/tools/consoleInterface.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/de/anomic/tools/consoleInterface.java b/source/de/anomic/tools/consoleInterface.java index 46675b895..a7423f7e9 100755 --- a/source/de/anomic/tools/consoleInterface.java +++ b/source/de/anomic/tools/consoleInterface.java @@ -93,7 +93,7 @@ public class consoleInterface extends Thread if (buffer.ready()) break; } - log.logInfo("logpoint 3 "+ name +" needed " + tries + " tries"); + //log.logInfo("logpoint 3 "+ name +" needed " + tries + " tries"); while((line = buffer.readLine()) != null) { output.add(line); } @@ -109,10 +109,10 @@ public class consoleInterface extends Thread public List getOutput(){ // wait that data is ready try { - log.logInfo("logpoint 4 waiting for data of '"+ name +"'"); - final long start = System.currentTimeMillis(); + //log.logInfo("logpoint 4 waiting for data of '"+ name +"'"); + //final long start = System.currentTimeMillis(); dataIsRead.acquire(); - log.logInfo("logpoint 5 data ready for '"+ name +"' after "+ (System.currentTimeMillis() - start) +" ms"); + //log.logInfo("logpoint 5 data ready for '"+ name +"' after "+ (System.currentTimeMillis() - start) +" ms"); } catch (InterruptedException e) { // after interrupt just return what is available (maybe nothing) }