From 54db63c37860bb7648b6bff972e6bbd59b7f7047 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 30 Jul 2016 19:19:07 -0500 Subject: [PATCH] Adjust logging for itemtypes not found --- resources/lib/itemtypes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index 7438c83f..048ac830 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -288,7 +288,7 @@ class Movies(Items): except TypeError: update_item = False - log.info("movieid: %s not found." % itemid) + log.debug("movieid: %s not found." % itemid) # movieid kodicursor.execute("select coalesce(max(idMovie),0) from movie") movieid = kodicursor.fetchone()[0] + 1 @@ -670,7 +670,7 @@ class MusicVideos(Items): except TypeError: update_item = False - log.info("mvideoid: %s not found." % itemid) + log.debug("mvideoid: %s not found." % itemid) # mvideoid kodicursor.execute("select coalesce(max(idMVideo),0) from musicvideo") mvideoid = kodicursor.fetchone()[0] + 1 @@ -1008,7 +1008,7 @@ class TVShows(Items): except TypeError: update_item = False - log.info("showid: %s not found." % itemid) + log.debug("showid: %s not found." % itemid) kodicursor.execute("select coalesce(max(idShow),0) from tvshow") showid = kodicursor.fetchone()[0] + 1