From a2d0c3cb493cb9c0109731001a30a80f0619d454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Thu, 6 Aug 2020 03:44:55 +0200 Subject: [PATCH] Remove Ancestor found debug (info) log --- jellyfin_kodi/helper/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jellyfin_kodi/helper/utils.py b/jellyfin_kodi/helper/utils.py index 7b814116..835cbf1b 100644 --- a/jellyfin_kodi/helper/utils.py +++ b/jellyfin_kodi/helper/utils.py @@ -546,7 +546,6 @@ def find_library(server, item): ancestors = server.jellyfin.get_ancestors(item['Id']) for ancestor in ancestors: if ancestor['Id'] in sync['Whitelist']: - LOG.info('Ancestor Found') return ancestor LOG.error('No ancestor found, not syncing item with ID: {}'.format(item['Id']))