From ad507ce23da59f93acaf821838582d53423bb4b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 1 Oct 2025 15:29:30 -0700 Subject: [PATCH] FrameLogger: it's fine to print transport messages --- src/pipecat/processors/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/processors/logger.py b/src/pipecat/processors/logger.py index acc85c40b..887ce71fe 100644 --- a/src/pipecat/processors/logger.py +++ b/src/pipecat/processors/logger.py @@ -15,7 +15,7 @@ from pipecat.frames.frames import ( Frame, InputAudioRawFrame, OutputAudioRawFrame, - TransportMessageFrame, + UserSpeakingFrame, ) from pipecat.processors.frame_processor import FrameDirection, FrameProcessor @@ -36,9 +36,9 @@ class FrameLogger(FrameProcessor): color: Optional[str] = None, ignored_frame_types: Tuple[Type[Frame], ...] = ( BotSpeakingFrame, + UserSpeakingFrame, InputAudioRawFrame, OutputAudioRawFrame, - TransportMessageFrame, ), ): """Initialize the frame logger.