Increase logging to find movie bug

Titles being assigned the wrong tag.
This commit is contained in:
angelblue05 2016-09-14 02:09:40 -05:00
parent 936126f5bf
commit 20d499338b
2 changed files with 2 additions and 0 deletions

View File

@ -477,6 +477,7 @@ class Movies(Items):
tags.extend(item['Tags'])
if userdata['Favorite']:
tags.append("Favorite movies")
log.info("Applied tags: %s", tags)
self.kodi_db.addTags(movieid, tags, "movie")
# Process playstates
resume = API.adjust_resume(userdata['Resume'])

View File

@ -567,6 +567,7 @@ class LibrarySync(threading.Thread):
##### PROCESS MOVIES #####
for view in views:
log.info("Processing: %s", view)
if self.shouldStop():
return False