From 5cf224a850f9ede69ce2950359deda055d54b65f Mon Sep 17 00:00:00 2001 From: twolaw Date: Sat, 22 Oct 2022 12:43:18 +0200 Subject: [PATCH] change log level of 'retry using search' to debug --- plextraktsync/trakt_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plextraktsync/trakt_api.py b/plextraktsync/trakt_api.py index d76965073b5..48759bfae9a 100644 --- a/plextraktsync/trakt_api.py +++ b/plextraktsync/trakt_api.py @@ -387,7 +387,7 @@ def find_episode_guid(self, guid: PlexGuid, lookup: TraktLookup): return te.instance else: # Retry using search for specific Plex Episode - logger.warning(f"Retry using search for specific Plex Episode {guid.guid}") + logger.debug(f"Retry using search for specific Plex Episode {guid.guid}") if not guid.is_episode: return self.find_by_guid(guid) return None