adjust log level a bit
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 21 Apr 2022 17:23:46 +0000 (19:23 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 21 Apr 2022 17:23:46 +0000 (19:23 +0200)
music_assistant/controllers/stream.py

index 4f9c8f0c04c1821acb2ae24240f007c4b219e07b..ceb99c3c976f998442768bcfecff825e8269e9ad 100644 (file)
@@ -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