Merge pull request #853 from nyuszika7h/disable-log-wrap

Disable log.stdout.wrap by default
This commit is contained in:
Valentin Lorentz 2014-10-09 16:06:01 +02:00
commit e0b1796042

View File

@ -281,7 +281,7 @@ conf.registerGlobalValue(conf.supybot.log.stdout, 'colorized',
BooleanRequiredFalseOnWindows(False, """Determines whether the bot's logs BooleanRequiredFalseOnWindows(False, """Determines whether the bot's logs
to stdout (if enabled) will be colorized with ANSI color.""")) to stdout (if enabled) will be colorized with ANSI color."""))
conf.registerGlobalValue(conf.supybot.log.stdout, 'wrap', 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.""")) when they're output to stdout."""))
conf.registerGlobalValue(conf.supybot.log.stdout, 'format', conf.registerGlobalValue(conf.supybot.log.stdout, 'format',
registry.String('%(levelname)s %(asctime)s %(message)s', registry.String('%(levelname)s %(asctime)s %(message)s',