From: W. Trevor King Date: Tue, 10 Aug 2010 19:41:53 +0000 (-0400) Subject: Set hand1 logging handler level to WARN by default (avoids DEBUG clutter, etc.) X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=36d7ce5bbe3aa078ae9777b5d2008e55b240d520;p=hooke.git Set hand1 logging handler level to WARN by default (avoids DEBUG clutter, etc.) --- diff --git a/hooke/config.py b/hooke/config.py index ea5b2e4..cba24d1 100644 --- a/hooke/config.py +++ b/hooke/config.py @@ -106,7 +106,7 @@ DEFAULT_SETTINGS = [ Setting('logger_hooke', 'qualname', 'hooke'), Setting('handler_hand1', help='Configure the default log handler, see\nhttp://docs.python.org/library/logging.html#configuration-file-format', wrap=False), Setting('handler_hand1', 'class', 'StreamHandler'), - Setting('handler_hand1', 'level', 'NOTSET'), + Setting('handler_hand1', 'level', 'WARN'), #NOTSET'), Setting('handler_hand1', 'formatter', 'form1'), Setting('handler_hand1', 'args', '(sys.stderr,)'), Setting('formatter_form1', help='Configure the default log formatter, see\nhttp://docs.python.org/library/logging.html#configuration-file-format', wrap=False),