mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Adjust logging for itemtypes not found
This commit is contained in:
parent
95066b0f77
commit
54db63c378
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue