From 10d41813629810c606592118184a055bc889dbf9 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 5 Aug 2022 08:09:56 +0200 Subject: [PATCH] adjust error message --- music_assistant/controllers/streams.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/music_assistant/controllers/streams.py b/music_assistant/controllers/streams.py index a0c2bce7..4d5e931e 100644 --- a/music_assistant/controllers/streams.py +++ b/music_assistant/controllers/streams.py @@ -728,7 +728,8 @@ class QueueStream: # log warning if received seconds are a lot less than expected if (stream_duration - chunk_num) > 20: self.logger.warning( - "Unexpected number of chunks received for track: %s/%s", + "Unexpected number of chunks received for track %s: %s/%s", + queue_track.uri, chunk_num, stream_duration, ) -- 2.34.1