From 64d34792ca6f2c77d8d5206b67c07d6f5445c35b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 23 Oct 2007 03:33:11 +0000 Subject: [PATCH] Added additional help for supybot.log.level. --- src/log.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/log.py b/src/log.py index c8d27d192..476f49421 100644 --- a/src/log.py +++ b/src/log.py @@ -247,8 +247,10 @@ conf.registerGlobalValue(conf.supybot.log, 'format', its logging module.""")) conf.registerGlobalValue(conf.supybot.log, 'level', LogLevel(logging.INFO, """Determines what the minimum priority level logged - will be. Valid values are DEBUG, INFO, WARNING, ERROR, - and CRITICAL, in order of increasing priority.""")) + to file will be. Do note that this value does not affect the level logged + to stdout; for that, you should set the value of supybot.log.stdout.level. + Valid values are DEBUG, INFO, WARNING, ERROR, and CRITICAL, in order of + increasing priority.""")) conf.registerGlobalValue(conf.supybot.log, 'timestampFormat', registry.String('%Y-%m-%dT%H:%M:%S', """Determines the format string for timestamps in logfiles. Refer to the Python documentation for the time