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)