summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-10-20 17:45:31 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-10-20 17:45:31 +0200
commit4106d0c2c778926e86829a7bf86c83830b38b69e (patch)
tree31b0d496899125242b909f662c3f0c0c15682d6c
parent7ce8d55d8855902912fab625216e5d97aa51d756 (diff)
Disable debug logging
-rw-r--r--daemon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon.py b/daemon.py
index 8971737..8852e4e 100644
--- a/daemon.py
+++ b/daemon.py
@@ -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)