From 0a936495b92327852d2f4461074c4fb7287001b3 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 19 Jan 2026 12:59:24 +0800 Subject: [PATCH] =?UTF-8?q?```=20feat(registry):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E6=B3=A8=E5=86=8C=E6=97=A5=E5=BF=97=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 _register_module 方法中添加 logger.info 日志输出 - 记录模块名称、模块类和模块路径信息 - 便于调试和追踪模块注册过程 ``` --- runtime/python-executor/datamate/common/utils/registry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/python-executor/datamate/common/utils/registry.py b/runtime/python-executor/datamate/common/utils/registry.py index 510d53e..770f121 100644 --- a/runtime/python-executor/datamate/common/utils/registry.py +++ b/runtime/python-executor/datamate/common/utils/registry.py @@ -81,6 +81,7 @@ class Registry(object): :param force: 是否强行覆盖同名模块,默认值为False. """ + logger.info(f'_register_module: {module_name}\t{module_cls}\t{module_path}') if module_name is None and module_cls is not None: module_name = module_cls.__name__