Clean up smart text logging

This commit is contained in:
Mark Backman
2026-05-20 15:38:59 -04:00
parent 105d6f27da
commit 4a96b2a9e6
2 changed files with 1 additions and 2 deletions

View File

@@ -529,7 +529,7 @@ class RTVIObserver(BaseObserver):
isTTS = isinstance(frame, TTSTextFrame)
if agg_type is not AggregationType.WORD:
logger.debug(f"{self} Aggregated LLM text: {text}, {agg_type} spoken:{isTTS}")
logger.trace(f"{self} Aggregated LLM text: {text}, {agg_type} spoken:{isTTS}")
if self._params.bot_output_enabled:
message = RTVI.BotOutputMessage(

View File

@@ -86,7 +86,6 @@ class WordCompletionTracker:
self._overflow_word: str | None = None
self._llm_consumed: str | None = None
self._frame_word: str | None = None
logger.debug(f"WordCompletionTracker: {self._tts_normalized}")
@staticmethod
def _normalize(text: str) -> str: