feat: log sound start as info
This commit is contained in:
@@ -53,7 +53,7 @@ class AudioSystem:
|
|||||||
# drain the queue
|
# drain the queue
|
||||||
while True:
|
while True:
|
||||||
item = self.to_play.get(False)
|
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
|
wave_file = wave.open(item) # type: wave.Wave_read
|
||||||
stream = self.audio.open(
|
stream = self.audio.open(
|
||||||
format=self.audio.get_format_from_width(wave_file.getsampwidth()),
|
format=self.audio.get_format_from_width(wave_file.getsampwidth()),
|
||||||
|
|||||||
Reference in New Issue
Block a user