From f9d5138cd96c3301bd2e22bcecdd6475ace3a746 Mon Sep 17 00:00:00 2001 From: Eric Munson Date: Sun, 12 Oct 2025 10:41:40 -0400 Subject: [PATCH] Subsonic: Add debug statement for resolving cover art (#2500) I am seeing failures in the request claiming there is no cover art path provided. I want to see this value when the failures occur. Signed-off-by: Eric B Munson --- music_assistant/providers/opensubsonic/sonic_provider.py | 1 + 1 file changed, 1 insertion(+) diff --git a/music_assistant/providers/opensubsonic/sonic_provider.py b/music_assistant/providers/opensubsonic/sonic_provider.py index 981c92b6..c5b6b3af 100644 --- a/music_assistant/providers/opensubsonic/sonic_provider.py +++ b/music_assistant/providers/opensubsonic/sonic_provider.py @@ -176,6 +176,7 @@ class OpenSonicProvider(MusicProvider): async def resolve_image(self, path: str) -> bytes | Any: """Return the image.""" + self.logger.debug("Requesting cover art for '%s'", path) def _get_cover_art() -> bytes | Any: try: -- 2.34.1