update branch

This commit is contained in:
qwen.ai[bot]
2026-04-25 12:28:01 +00:00
parent 138a8ffb7a
commit 3ffc10be92
19 changed files with 147 additions and 60 deletions

View File

@@ -39,7 +39,8 @@ class HttpEventBus:
for handler in handlers:
try:
handler(event)
except Exception:
except Exception as e:
import traceback; print(f"[events.py] 错误:{type(e).__name__}:{e}"); traceback.print_exc()
pass
def clear(self):