From 36d7ce5bbe3aa078ae9777b5d2008e55b240d520 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 10 Aug 2010 15:41:53 -0400 Subject: [PATCH] Set hand1 logging handler level to WARN by default (avoids DEBUG clutter, etc.) --- hooke/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), -- 2.26.2