Browse Source

Disable access logging

pull/1/merge
Ruud 14 years ago
parent
commit
e577d60121
  1. 4
      couchpotato/cli.py

4
couchpotato/cli.py

@ -58,6 +58,10 @@ def cmd_couchpotato(base_path):
hdlr2.setFormatter(formatter)
logger.addHandler(hdlr2)
# Disable server access log
server_log = logging.getLogger('werkzeug')
server_log.disabled = True
# Start logging
log = CPLog(__name__)
log.debug('Started with params %s' % args)

Loading…
Cancel
Save