From 6f5541bc7eae1af839b73e2f3e27be1da3dbcc29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=B0=B8=E8=B5=AB?= <1259085392@qq.com> Date: Wed, 25 Mar 2026 21:50:48 +0900 Subject: [PATCH] fix: restore orchestrator logger binding --- astrbot/_internal/runtime/orchestrator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/astrbot/_internal/runtime/orchestrator.py b/astrbot/_internal/runtime/orchestrator.py index 98be504c6..8211fe0c4 100644 --- a/astrbot/_internal/runtime/orchestrator.py +++ b/astrbot/_internal/runtime/orchestrator.py @@ -11,6 +11,7 @@ from typing import Any import anyio +from astrbot import logger from astrbot._internal.abc.base_astrbot_orchestrator import BaseAstrbotOrchestrator from astrbot._internal.protocols.abp.client import AstrbotAbpClient from astrbot._internal.protocols.acp.client import AstrbotAcpClient @@ -18,6 +19,8 @@ from astrbot._internal.protocols.lsp.client import AstrbotLspClient from astrbot._internal.protocols.mcp.client import McpClient from astrbot._internal.stars import RuntimeStatusStar +log = logger + class AstrbotOrchestrator(BaseAstrbotOrchestrator): """