Browse Source

Get colors back, remove logged string

pull/3111/head
Ruud 11 years ago
parent
commit
11aaaecb7b
  1. 3
      couchpotato/core/loader.py
  2. 1
      couchpotato/runner.py

3
couchpotato/core/loader.py

@ -146,6 +146,9 @@ class Loader(object):
self.modules[priority] = {}
module = module.lstrip('.')
if plugin_type.startswith('couchpotato_core'):
plugin_type = plugin_type[17:]
self.modules[priority][module] = {
'priority': priority,
'module': module,

1
couchpotato/runner.py

@ -178,6 +178,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En
logger.addHandler(hdlr2)
# Start logging & enable colors
import color_logs
from couchpotato.core.logger import CPLog
log = CPLog(__name__)
log.debug('Started with options %s', options)

Loading…
Cancel
Save