From e9965347b53ba23a8c6456c141e66aca7d05211f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 22 May 2024 17:56:55 -0700 Subject: [PATCH] processors(WakeCheckFilter): log what frame we are pushing --- src/pipecat/processors/filters/wake_check_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/filters/wake_check_filter.py b/src/pipecat/processors/filters/wake_check_filter.py index 4f976fc72..2fe7c127f 100644 --- a/src/pipecat/processors/filters/wake_check_filter.py +++ b/src/pipecat/processors/filters/wake_check_filter.py @@ -55,7 +55,7 @@ class WakeCheckFilter(FrameProcessor): if p.state == WakeCheckFilter.WakeState.AWAKE: if time.time() - p.wake_timer < self._keepalive_timeout: logger.debug( - "Wake phrase keepalive timeout has not expired. Passing frame through.") + f"Wake phrase keepalive timeout has not expired. Pushing {frame}") p.wake_timer = time.time() await self.push_frame(frame) return