Merge pull request #1245 from pipecat-ai/aleix/stt-mute-filter-trace-logging

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-18 21:21:55 -08:00
committed by GitHub

View File

@@ -193,7 +193,7 @@ class STTMuteFilter(FrameProcessor):
if not self.is_muted: if not self.is_muted:
await self.push_frame(frame, direction) await self.push_frame(frame, direction)
else: else:
logger.debug(f"{frame.__class__.__name__} suppressed - STT currently muted") logger.trace(f"{frame.__class__.__name__} suppressed - STT currently muted")
else: else:
# Pass all other frames through # Pass all other frames through
await self.push_frame(frame, direction) await self.push_frame(frame, direction)