Changing to debug the log when we are not able to append audio to the context.

This commit is contained in:
filipi87
2026-03-27 12:12:16 -03:00
parent e851f8c1d5
commit e2870fc2ac

View File

@@ -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.