From 0f5cff0c0ec525b22244b5cdb5cd9f56069b47da Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 12 Feb 2026 13:44:14 +0800 Subject: [PATCH] bugfix --- skillagent/skillengine.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skillagent/skillengine.py b/skillagent/skillengine.py index 1a8e47e..08ea18a 100644 --- a/skillagent/skillengine.py +++ b/skillagent/skillengine.py @@ -1,6 +1,7 @@ import os import re import json +from traceback import format_exc import asyncio import yaml from functools import partial @@ -203,12 +204,12 @@ class IndustrialSkillEngine: 'status': 'FAILED', 'error': f"{e}" }) + debug(f'{e}\n{format_exc()}') await self.write_output(None) async def _run(self, user_prompt: str, context=None, is_retry=False): # 如果是重试,跳过技能选择 await self.boot() - debug(f'{self.registry=}') if not is_retry: await self.write_output({ "status": "PROCESSING",