From 11c1b0f0ac87ad6dc243c6fcf51f0c245589aa51 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Thu, 19 Mar 2026 01:10:02 +0800 Subject: [PATCH] =?UTF-8?q?Debug:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D0=BB=D0=BE=D0=B3=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D0=BE=D0=B2=20QWEN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Qwen-Coder --- src/tools/tool_runner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/tool_runner.py b/src/tools/tool_runner.py index 9a5f3a1..bfc7409 100644 --- a/src/tools/tool_runner.py +++ b/src/tools/tool_runner.py @@ -20,6 +20,7 @@ class ToolRunner: args = ["run", "--chat-recording=false", prompt] if yolo: args.append("--yolo") + logger.warning(f"[QWEN] yolo={yolo}, args={args}") return await self._run_tool(self.qwen_command, args, cwd=cwd) async def run_opencode(self, prompt: str, model: Optional[str] = None) -> Tuple[str, bool]: