From bdb58918e7f12b148bd462a237797d07e9e28e48 Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Fri, 11 Jul 2025 18:06:20 +0000 Subject: [PATCH] Jellyfin/Emby: Log missing identifiers to debug Signed-off-by: Luis Garcia --- src/jellyfin_emby.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jellyfin_emby.py b/src/jellyfin_emby.py index deaf252..5d65380 100644 --- a/src/jellyfin_emby.py +++ b/src/jellyfin_emby.py @@ -35,13 +35,13 @@ def extract_identifiers_from_item( id = None if not title: id = item.get("Id") - logger.info(f"{server_type}: Name not found for {id}") + logger.debug(f"{server_type}: Name not found for {id}") guids = {} if generate_guids: guids = {k.lower(): v for k, v in item.get("ProviderIds", {}).items()} if not guids: - logger.info( + logger.debug( f"{server_type}: {title if title else id} has no guids", ) @@ -59,7 +59,7 @@ def extract_identifiers_from_item( ) if not locations: - logger.info(f"{server_type}: {title if title else id} has no locations") + logger.debug(f"{server_type}: {title if title else id} has no locations") return MediaIdentifiers( title=title,