From 005802358b119d4a12e4c80d7dc0f3fa565f00d3 Mon Sep 17 00:00:00 2001 From: Rick Rongen Date: Sat, 31 Oct 2020 10:43:00 +0100 Subject: [PATCH] feat: log sound start as info --- control/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()),