Plex: add logging for failed find_video + get_video_status

This commit is contained in:
Somer Hayter
2024-01-13 00:00:29 +11:00
parent 59b49fd0df
commit c6affc3108

View File

@@ -209,6 +209,8 @@ def find_video(plex_search, video_ids, videos=None):
return False, [] return False, []
except Exception: except Exception:
logger(f"Plex: failed to find library item for {video_ids['title']}", 2)
logger(traceback.format_exc(), 2)
return False, [] return False, []
@@ -240,6 +242,8 @@ def get_video_status(plex_search, video_ids, videos):
return None return None
except Exception: except Exception:
logger(f"Plex: failed to find library item for {video_ids['title']}", 2)
logger(traceback.format_exc(), 2)
return None return None