fix:修复logger

This commit is contained in:
SengokuCola
2025-06-04 21:38:48 +08:00
parent f331510e7d
commit 5946633dcd
5 changed files with 10 additions and 10 deletions

View File

@@ -187,9 +187,9 @@ class ActionPlanner(BasePlanner):
prompt = f"{prompt}"
llm_content, (reasoning_content, _) = await self.planner_llm.generate_response_async(prompt=prompt)
logger.info(
f"{self.log_prefix}规划器Prompt:\n{prompt}\n\nLLM 原始响应: {llm_content}'"
)
# logger.info(
# f"{self.log_prefix}规划器Prompt:\n{prompt}\n\nLLM 原始响应: {llm_content}'"
# )
logger.debug(f"{self.log_prefix}LLM 原始理由响应: {reasoning_content}")
except Exception as req_e: