From d5b4da655ac9a93ee646ef308587b29e0e48d690 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Tue, 11 Jun 2013 21:51:56 +0930 Subject: [PATCH] add logging when no rating available --- couchpotato/core/providers/automation/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/core/providers/automation/base.py b/couchpotato/core/providers/automation/base.py index 4655c1ad..ea227ce0 100644 --- a/couchpotato/core/providers/automation/base.py +++ b/couchpotato/core/providers/automation/base.py @@ -51,6 +51,7 @@ class Automation(Provider): def isMinimalMovie(self, movie): if not movie.get('rating'): + log.info('ignoring %s as no rating is available for.', (movie['original_title'])) return False if movie['rating'] and movie['rating'].get('imdb'):