From 43c255f58a70952cbd4bdf752a6f01a644f64724 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Mon, 31 Mar 2025 16:43:03 -0400 Subject: [PATCH] Clarify the mute/unmute log line in STTMuteFilter --- src/pipecat/processors/filters/stt_mute_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/filters/stt_mute_filter.py b/src/pipecat/processors/filters/stt_mute_filter.py index cce087f22..ae81acc1e 100644 --- a/src/pipecat/processors/filters/stt_mute_filter.py +++ b/src/pipecat/processors/filters/stt_mute_filter.py @@ -108,7 +108,7 @@ class STTMuteFilter(FrameProcessor): async def _handle_mute_state(self, should_mute: bool): """Handles both STT muting and interruption control.""" if should_mute != self.is_muted: - logger.debug(f"STT {'muting' if should_mute else 'unmuting'}") + logger.debug(f"STTMuteFilter {'muting' if should_mute else 'unmuting'}") self._is_muted = should_mute await self.push_frame(STTMuteFrame(mute=should_mute))