fix: 将日志级别从trace更改为debug

This commit is contained in:
晴猫
2025-06-11 22:49:25 +09:00
parent 4747c151d5
commit fc7b9b61d9
9 changed files with 22 additions and 22 deletions

View File

@@ -328,7 +328,7 @@ def process_llm_response(text: str) -> list[str]:
# 先保护颜文字
if global_config.response_splitter.enable_kaomoji_protection:
protected_text, kaomoji_mapping = protect_kaomoji(text)
logger.trace(f"保护颜文字后的文本: {protected_text}")
logger.debug(f"保护颜文字后的文本: {protected_text}")
else:
protected_text = text
kaomoji_mapping = {}