把logger中的重复输出塞进debug,删掉调试打印语句

This commit is contained in:
Bakadax
2025-04-27 18:40:17 +08:00
parent 71f35d8f73
commit 60b3187227
5 changed files with 2 additions and 12 deletions

View File

@@ -162,7 +162,7 @@ class ReplyGenerator:
logger.debug(f"发送到LLM的生成提示词:\n------\n{prompt}\n------")
try:
content, _ = await self.llm.generate_response_async(prompt)
logger.info(f"生成的回复: {content}")
logger.debug(f"生成的回复: {content}")
# 移除旧的检查新消息逻辑,这应该由 conversation 控制流处理
return content