Private GIT

Skip to content
Snippets Groups Projects
Commit e577d601 authored by Ruud's avatar Ruud
Browse files

Disable access logging

parent 60e58018
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,10 @@ def cmd_couchpotato(base_path): ...@@ -58,6 +58,10 @@ def cmd_couchpotato(base_path):
hdlr2.setFormatter(formatter) hdlr2.setFormatter(formatter)
logger.addHandler(hdlr2) logger.addHandler(hdlr2)
# Disable server access log
server_log = logging.getLogger('werkzeug')
server_log.disabled = True
# Start logging # Start logging
log = CPLog(__name__) log = CPLog(__name__)
log.debug('Started with params %s' % args) log.debug('Started with params %s' % args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment