From: Marcel van der Veldt Date: Thu, 21 Apr 2022 17:23:46 +0000 (+0200) Subject: adjust log level a bit X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=5cb0b7b3b338ce240338a2b88186bccc469d59e8;p=music-assistant-server.git adjust log level a bit --- diff --git a/music_assistant/controllers/stream.py b/music_assistant/controllers/stream.py index 4f9c8f0c..ceb99c3c 100644 --- a/music_assistant/controllers/stream.py +++ b/music_assistant/controllers/stream.py @@ -400,7 +400,7 @@ class StreamController: # check the PCM samplerate/bitrate if not resample and streamdetails.bit_depth > bit_depth: await queue.queue_stream_signal_next() - self.logger.debug("Abort queue stream due to bit depth mismatch") + self.logger.info("Abort queue stream due to bit depth mismatch") await queue.queue_stream_signal_next() break if ( @@ -408,7 +408,7 @@ class StreamController: and streamdetails.sample_rate > sample_rate and streamdetails.sample_rate <= queue.max_sample_rate ): - self.logger.debug("Abort queue stream due to sample rate mismatch") + self.logger.info("Abort queue stream due to sample rate mismatch") await queue.queue_stream_signal_next() break