From 93f4b8b5372a2dab62f197d6c8984301690fed92 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 11 May 2014 00:14:56 +0200 Subject: [PATCH] Don't log non existing properties --- couchpotato/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/settings.py b/couchpotato/core/settings.py index 16c827c8..a0bcd743 100644 --- a/couchpotato/core/settings.py +++ b/couchpotato/core/settings.py @@ -234,7 +234,7 @@ class Settings(object): propert = db.get('property', identifier, with_doc = True) prop = propert['doc']['value'] except: - self.log.debug('Property "%s" doesn\'t exist: %s', (identifier, traceback.format_exc(0))) + pass # self.log.debug('Property "%s" doesn\'t exist: %s', (identifier, traceback.format_exc(0))) return prop