Less logging

This commit is contained in:
croneter 2018-02-26 10:28:48 +01:00
parent e21c16f846
commit 5f7426da1c
2 changed files with 3 additions and 3 deletions

View file

@ -324,7 +324,7 @@ class Artwork():
(url,))
cachedurl = cursor.fetchone()[0]
except TypeError:
LOG.info("Could not find cached url.")
LOG.debug("Could not find cached url.")
else:
# Delete thumbnail as well as the entry
path = translatePath("special://thumbnails/%s" % cachedurl)

View file

@ -469,7 +469,7 @@ class Movies(Items):
kodi_id = plex_dbitem[0]
file_id = plex_dbitem[1]
kodi_type = plex_dbitem[4]
LOG.info("Removing %sid: %s file_id: %s",
LOG.debug("Removing %sid: %s file_id: %s",
kodi_type, kodi_id, file_id)
except TypeError:
return
@ -509,7 +509,7 @@ class Movies(Items):
# Update plex reference
plex_db.updateParentId(plexid, None)
kodicursor.execute("DELETE FROM sets WHERE idSet = ?", (kodi_id,))
LOG.info("Deleted %s %s from kodi database", kodi_type, itemid)
LOG.debug("Deleted %s %s from kodi database", kodi_type, itemid)
class TVShows(Items):