From 69cc18542cea895bc59f072f3d29aa27d501fb43 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Wed, 5 Feb 2025 11:34:39 +0100 Subject: [PATCH] Chore: Extend exception info --- music_assistant/helpers/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/helpers/audio.py b/music_assistant/helpers/audio.py index 80969150..592188da 100644 --- a/music_assistant/helpers/audio.py +++ b/music_assistant/helpers/audio.py @@ -659,7 +659,7 @@ async def resolve_radio_stream(mass: MusicAssistant, url: str) -> tuple[str, Str stream_type = StreamType.HLS except Exception as err: - LOGGER.warning("Error while parsing radio URL %s: %s", url, err) + LOGGER.warning("Error while parsing radio URL %s: %s", url, str(err)) return (url, stream_type) result = (resolved_url, stream_type) -- 2.34.1