diff --git a/control/audio.py b/control/audio.py index f5d7dcf..3019e0f 100644 --- a/control/audio.py +++ b/control/audio.py @@ -53,7 +53,7 @@ class AudioSystem: # drain the queue while True: item = self.to_play.get(False) - logger.debug(f"Queueing stream for {item!r}") + logger.info(f"Queueing stream for {item!r}") wave_file = wave.open(item) # type: wave.Wave_read stream = self.audio.open( format=self.audio.get_format_from_width(wave_file.getsampwidth()),