feat: log sound start as info

This commit is contained in:
2020-10-31 10:43:00 +01:00
parent d9917e309e
commit 005802358b

View File

@@ -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()),