From f81a418c4e2a0196c941b0ac9d7ea859918e6178 Mon Sep 17 00:00:00 2001 From: tehkillerbee Date: Sat, 2 Mar 2024 17:31:42 +0100 Subject: [PATCH] Revert to log.debug --- mopidy_tidal/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_tidal/library.py b/mopidy_tidal/library.py index 9e80425..24450e4 100755 --- a/mopidy_tidal/library.py +++ b/mopidy_tidal/library.py @@ -124,7 +124,7 @@ def __call__(self, uri: str) -> Tuple[str, List[Image]]: parts = uri.split(":") item_type = parts[1] if item_type not in ["artist", "album", "playlist", "mix", "track"]: - logger.error("URI %s type has no image getters", uri) + logger.debug("URI %s type has no image getters", uri) return uri, [] try: return uri, self._get_images(uri)