From ccfe73bdb4bc75a0466779012f6e1685bad68dc9 Mon Sep 17 00:00:00 2001 From: twolaw Date: Tue, 25 Oct 2022 14:50:57 +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 33c4f88cc4d..32d479b53bd 100644 --- a/plextraktsync/trakt_api.py +++ b/plextraktsync/trakt_api.py @@ -386,7 +386,7 @@ def find_episode_guid(self, guid: PlexGuid, lookup: TraktLookup): if te: return te - 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