From: Marcel van der Veldt Date: Wed, 5 Feb 2025 10:34:39 +0000 (+0100) Subject: Chore: Extend exception info X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=69cc18542cea895bc59f072f3d29aa27d501fb43;p=music-assistant-server.git Chore: Extend exception info --- 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)