From e2870fc2ac08b2ac9cb04fac9a4459b72114f358 Mon Sep 17 00:00:00 2001 From: filipi87 Date: Fri, 27 Mar 2026 12:12:16 -0300 Subject: [PATCH] Changing to debug the log when we are not able to append audio to the context. --- src/pipecat/services/tts_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/tts_service.py b/src/pipecat/services/tts_service.py index a65a5e244..1cd68540d 100644 --- a/src/pipecat/services/tts_service.py +++ b/src/pipecat/services/tts_service.py @@ -1223,7 +1223,7 @@ class TTSService(AIService): logger.trace(f"{self} appending audio {frame} to audio context {context_id}") await self._audio_contexts[context_id].put(frame) else: - logger.warning(f"{self} unable to append audio to context {context_id}") + logger.debug(f"{self} unable to append audio to context {context_id}") async def remove_audio_context(self, context_id: str): """Remove an existing audio context.