removed test (in yacy.init)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4641 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
danielr 2008-04-05 13:49:25 +00:00
parent 5c3c1fdf41
commit 2aef1414f5
3 changed files with 2 additions and 4 deletions

View File

@ -70,8 +70,7 @@ server.maxTrackingTime = 3600000
# The property here can also be a url where the definition can be loaded.
# In case of privately managed networks, this configuration must be changed BEFORE it is released
# to the members of the separated network peers.
#network.unit.definition = defaults/yacy.network.freeworld.unit
network.unit.definition = defaults/yacy.network.intranet.unit
network.unit.definition = defaults/yacy.network.freeworld.unit
network.group.definition = defaults/yacy.network.group
# Update process properties

View File

@ -501,7 +501,7 @@ public final class htmlFilterWriter extends Writer {
if (c > 7 && c <= 13) return false;
//if (Character.isLetterOrDigit(c)) return false;
// return false;
// System.out.println("BINARY HINT: " + (int) b);
System.out.println("BINARY HINT: " + (int) c);
return true;
}

View File

@ -125,7 +125,6 @@ public final class serverInstantBusyThread extends serverAbstractBusyThread impl
this.terminate(false);
} catch (InvocationTargetException e) {
String targetException = e.getTargetException().getMessage();
e.getTargetException().printStackTrace();
e.printStackTrace();
if ((targetException != null) && ((targetException.indexOf("heap space") > 0) || (targetException.indexOf("NullPointerException") > 0))) e.getTargetException().printStackTrace();
serverLog.logSevere("BUSYTHREAD", "Runtime Error in serverInstantThread.job, thread '" + this.getName() + "': " + e.getMessage() + "; target exception: " + targetException, e.getTargetException());