From 9fc0df614071589b02864a12cb477ff29e366476 Mon Sep 17 00:00:00 2001 From: Aaro Varis Date: Wed, 18 Feb 2026 16:30:46 +0200 Subject: [PATCH] Add debug print statement for audio playback in play_audio function --- src/audio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/audio.py b/src/audio.py index 000aa18..7bbbb58 100644 --- a/src/audio.py +++ b/src/audio.py @@ -26,6 +26,7 @@ def play_audio(file_path: str, loop: bool = False) -> Callable[[], None]: Returns: A callable that stops the audio playback when invoked. """ + print(f"Playing audio: {file_path} (loop={loop})") if file_path.endswith(".wav"): if loop: # Use sox's play command with repeat for looping wav files