Set hand1 logging handler level to WARN by default (avoids DEBUG clutter, etc.)
authorW. Trevor King <wking@drexel.edu>
Tue, 10 Aug 2010 19:41:53 +0000 (15:41 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 10 Aug 2010 19:41:53 +0000 (15:41 -0400)
hooke/config.py

index ea5b2e4f9e262891721e656ceb158fb583041792..cba24d19399a5b854de62365af22f680307e17c3 100644 (file)
@@ -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),