From 4a2f06053fb2a831e302e950202bf28ac2b4c827 Mon Sep 17 00:00:00 2001 From: theli Date: Tue, 23 Aug 2005 10:48:24 +0000 Subject: [PATCH] =?UTF-8?q?*)=20Bugfix=20for=20"Geh=C3=A4uselautsprecher"?= =?UTF-8?q?=20Bug=20=20=20=20If=20de.anomic.server.logging.ConsoleOutErrHa?= =?UTF-8?q?ndler.ignoreCtrlChr=20is=20set=20to=20true=20all=20control=20ch?= =?UTF-8?q?ars=20except=20=20=20=20space,tab,newline,=20are=20replaced=20w?= =?UTF-8?q?ith=20spaces=20=20=20=20See:=20http://www.yacy-forum.de/viewtop?= =?UTF-8?q?ic.php=3Fp=3D5528?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@579 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/server/logging/ConsoleOutErrHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/server/logging/ConsoleOutErrHandler.java b/source/de/anomic/server/logging/ConsoleOutErrHandler.java index f3913619e..9c4703142 100644 --- a/source/de/anomic/server/logging/ConsoleOutErrHandler.java +++ b/source/de/anomic/server/logging/ConsoleOutErrHandler.java @@ -44,7 +44,7 @@ public final class ConsoleOutErrHandler extends Handler{ setFormatter(makeFormatter(formatter)); String ignoreCtrlChrStr = manager.getProperty(className + ".ignoreCtrlChr"); - this.ignoreCtrlChr = (ignoreCtrlChrStr.equalsIgnoreCase("true")); + this.ignoreCtrlChr = (ignoreCtrlChrStr==null)?false:ignoreCtrlChrStr.equalsIgnoreCase("true"); }