From cfdc7e44523ed60d5be3e142823d57a8045b09fc Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 13 Jul 2025 16:12:48 +0800 Subject: [PATCH] fix: add debug logging for provider request handling in LLMRequestSubStage fixes: #2104 --- astrbot/core/pipeline/process_stage/method/llm_request.py | 1 + 1 file changed, 1 insertion(+) diff --git a/astrbot/core/pipeline/process_stage/method/llm_request.py b/astrbot/core/pipeline/process_stage/method/llm_request.py index e3ef065e9..697150107 100644 --- a/astrbot/core/pipeline/process_stage/method/llm_request.py +++ b/astrbot/core/pipeline/process_stage/method/llm_request.py @@ -166,6 +166,7 @@ class LLMRequestSubStage(Stage): event=event, pipeline_ctx=self.ctx, ) + logger.debug(f"handle provider[id: {provider.provider_config['id']}] request: {req}") await tool_loop_agent.reset(req=req, streaming=self.streaming_response) async def requesting():