diff --git a/couchpotato/core/notifications/growl/main.py b/couchpotato/core/notifications/growl/main.py index a37e8ef3..fe339fb5 100644 --- a/couchpotato/core/notifications/growl/main.py +++ b/couchpotato/core/notifications/growl/main.py @@ -15,8 +15,7 @@ class Growl(Notification): def __init__(self): super(Growl, self).__init__() - logger = logging.getLogger('gntp.notifier') - logger.disabled = True + logging.getLogger('gntp').setLevel(logging.WARNING) try: def startGrowl(): diff --git a/couchpotato/runner.py b/couchpotato/runner.py index 18184c81..88313f2a 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -99,8 +99,7 @@ def runCouchPotato(options, base_path, args, desktop = None): atexit.register(cleanup) # Disable server access log - server_log = logging.getLogger('werkzeug') - server_log.disabled = True + logging.getLogger('werkzeug').setLevel(logging.WARNING) # Only run once when debugging fire_load = False