From 0d6bdbee10fd08eeac71ba9d83f58e668b30ec57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 13 Jan 2026 15:11:22 -0800 Subject: [PATCH] LLMContextAggregatorPair: make strategy logs less verbose --- src/pipecat/processors/aggregators/llm_response_universal.py | 4 ++-- src/pipecat/turns/user_turn_processor.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pipecat/processors/aggregators/llm_response_universal.py b/src/pipecat/processors/aggregators/llm_response_universal.py index 85050e6d0..2854c8681 100644 --- a/src/pipecat/processors/aggregators/llm_response_universal.py +++ b/src/pipecat/processors/aggregators/llm_response_universal.py @@ -530,7 +530,7 @@ class LLMUserAggregator(LLMContextAggregator): strategy: BaseUserTurnStartStrategy, params: UserTurnStartedParams, ): - logger.debug(f"{self}: User started speaking (user turn start strategy: {strategy})") + logger.debug(f"{self}: User started speaking (strategy: {strategy})") self._user_turn_start_timestamp = time_now_iso8601() @@ -548,7 +548,7 @@ class LLMUserAggregator(LLMContextAggregator): strategy: BaseUserTurnStopStrategy, params: UserTurnStoppedParams, ): - logger.debug(f"{self}: User stopped speaking (user turn stop strategy: {strategy})") + logger.debug(f"{self}: User stopped speaking (strategy: {strategy})") if params.enable_user_speaking_frames: await self.broadcast_frame(UserStoppedSpeakingFrame) diff --git a/src/pipecat/turns/user_turn_processor.py b/src/pipecat/turns/user_turn_processor.py index 33ac078c2..79e4664a0 100644 --- a/src/pipecat/turns/user_turn_processor.py +++ b/src/pipecat/turns/user_turn_processor.py @@ -155,7 +155,7 @@ class UserTurnProcessor(FrameProcessor): strategy: BaseUserTurnStartStrategy, params: UserTurnStartedParams, ): - logger.debug(f"{self}: User started speaking (user turn start strategy: {strategy})") + logger.debug(f"{self}: User started speaking (strategy: {strategy})") if params.enable_user_speaking_frames: await self.broadcast_frame(UserStartedSpeakingFrame) @@ -171,7 +171,7 @@ class UserTurnProcessor(FrameProcessor): strategy: BaseUserTurnStopStrategy, params: UserTurnStoppedParams, ): - logger.debug(f"{self}: User stopped speaking (user turn stop strategy: {strategy})") + logger.debug(f"{self}: User stopped speaking (strategy: {strategy})") if params.enable_user_speaking_frames: await self.broadcast_frame(UserStoppedSpeakingFrame)