Conversation
PR Review: feat: rime tts update logSummary: This PR cleans up logging in the RIME TTS extension — removing a leftover debug Positive Changes
Issues / Observations1. User content logged at DEBUG level (pre-existing, but worth noting) # rime_tts.py, _send_text_internal
self.ten_env.log_debug(
f"send_text_to_tts_server: {message_json}",
category=LOG_CATEGORY_VENDOR,
)
2. Import placement (minor nit) from ten_ai_base.message import (
ModuleErrorVendorInfo,
ModuleVendorException,
)
+from ten_ai_base.const import LOG_CATEGORY_VENDOR # <-- inserted here
from .config import RimeTTSConfigAlphabetically within the SummaryClean, focused improvement. The changes are consistent with logging conventions used across the rest of the codebase. No bugs introduced. The one item worth a quick discussion is whether |
No description provided.