hide debug stdout messages

This commit is contained in:
Will Tekulve 2016-05-12 20:59:45 -04:00
parent 2f12a3b2e9
commit 53fcd73e1f

1
red.py
View File

@ -245,6 +245,7 @@ def set_logger():
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setFormatter(red_format)
stdout_handler.setLevel(logging.INFO)
fhandler = logging.handlers.RotatingFileHandler(
filename='data/red/red.log', encoding='utf-8', mode='a',