From 4c30b3f64425b9222c6957b76c08fa26a926701a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 23 Aug 2004 22:48:17 +0000 Subject: [PATCH] Change the default for individualPluginLogfiles. --- src/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.py b/src/log.py index 304e1cc9a..d032a887f 100644 --- a/src/log.py +++ b/src/log.py @@ -289,7 +289,7 @@ conf.registerGlobalValue(conf.supybot.log, 'stdout', registry.Boolean(True, """Determines whether the bot will log to stdout.""")) conf.registerGlobalValue(conf.supybot.log, 'individualPluginLogfiles', - registry.Boolean(True, """Determines whether the bot will separate plugin + registry.Boolean(False, """Determines whether the bot will separate plugin logs into their own individual logfiles.""")) class BooleanRequiredFalseOnWindows(registry.Boolean):