diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-10-20 17:45:31 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-10-20 17:45:31 +0200 |
commit | 4106d0c2c778926e86829a7bf86c83830b38b69e (patch) | |
tree | 31b0d496899125242b909f662c3f0c0c15682d6c | |
parent | 7ce8d55d8855902912fab625216e5d97aa51d756 (diff) |
Disable debug logging
-rw-r--r-- | daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ if __name__ == '__main__': import os import logging - logging.basicConfig(filename=os.environ.get('CODEQ_SERVER_LOG') or 'codeq-server.log', level=logging.DEBUG, format='%(asctime)s %(levelname)s %(message)s') + logging.basicConfig(filename=os.environ.get('CODEQ_SERVER_LOG') or 'codeq-server.log', level=logging.INFO, format='%(asctime)s %(levelname)s %(message)s') import signal signal.signal(signal.SIGCHLD, signal.SIG_IGN) |