From dd3752df17e3ae3032d439b6ed8d9f37dd09fad8 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sat, 13 Sep 2014 13:23:50 +0200 Subject: [PATCH] Disable log.stdout.wrap by default It causes more issues than it solves. The output might break if you resize the terminal and it can make logs harder to read. --- src/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.py b/src/log.py index 283032bcb..5254ce030 100644 --- a/src/log.py +++ b/src/log.py @@ -281,7 +281,7 @@ conf.registerGlobalValue(conf.supybot.log.stdout, 'colorized', BooleanRequiredFalseOnWindows(False, """Determines whether the bot's logs to stdout (if enabled) will be colorized with ANSI color.""")) conf.registerGlobalValue(conf.supybot.log.stdout, 'wrap', - registry.Boolean(True, """Determines whether the bot will wrap its logs + registry.Boolean(False, """Determines whether the bot will wrap its logs when they're output to stdout.""")) conf.registerGlobalValue(conf.supybot.log.stdout, 'format', registry.String('%(levelname)s %(asctime)s %(message)s',