From d1dd5fe77fa5d5182c2169392eee5f052de646ad Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 8 Sep 2011 11:19:41 +0200 Subject: [PATCH] Some more logging for movie searcher --- couchpotato/core/plugins/searcher/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 445f8af3..2f1e9930 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -192,6 +192,7 @@ class Searcher(Plugin): if len(movie_words) == 2 and self.correctYear([nzb['name']], movie['library']['year'], 0): return True + log.info("Wrong: %s, undetermined naming. Looking for '%s (%s)'" % (nzb['name'], movie['library']['titles'][0]['title'], movie['library']['year'])) return False def containsOtherQuality(self, name, preferred_quality = {}, single_category = False):