Made default config more debug friendly

This commit is contained in:
Tim Kuhlman 2014-03-20 14:23:13 -06:00
parent edac140d95
commit a6ad1b1ed3

@ -47,7 +47,7 @@ logging: # Used in logging.dictConfig
formatter: default formatter: default
file: file:
class : logging.handlers.RotatingFileHandler class : logging.handlers.RotatingFileHandler
filename: /var/log/mon-notification/notification.log filename: /tmp/notification.log
formatter: default formatter: default
maxBytes: 10485760 # Rotate at file size ~10MB maxBytes: 10485760 # Rotate at file size ~10MB
backupCount: 5 # Keep 5 older logs around backupCount: 5 # Keep 5 older logs around
@ -60,5 +60,5 @@ logging: # Used in logging.dictConfig
level: WARN level: WARN
root: root:
handlers: handlers:
- file - console
level: INFO level: INFO