From 1d69cd1a5ea42352d4279262f725897877a0f285 Mon Sep 17 00:00:00 2001 From: Pete Date: Sun, 20 Jul 2025 18:04:57 -0400 Subject: [PATCH] Remove debug logging from `_send_user_text` method in Gemini multimodal service --- src/pipecat/services/gemini_multimodal_live/gemini.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pipecat/services/gemini_multimodal_live/gemini.py b/src/pipecat/services/gemini_multimodal_live/gemini.py index 9d9bbb0d5..1a47755bd 100644 --- a/src/pipecat/services/gemini_multimodal_live/gemini.py +++ b/src/pipecat/services/gemini_multimodal_live/gemini.py @@ -968,7 +968,6 @@ class GeminiMultimodalLiveLLMService(LLMService): async def _send_user_text(self, text: str): """Send user text to Gemini Live API.""" - logger.debug(f"Sending text to Gemini: {text}") evt = events.TextInputMessage.from_text(text) await self.send_client_event(evt) # After sending text, we need to signal that the turn is complete.