From 804889f1de8d7ceb5c2e7259365d78e0314c8839 Mon Sep 17 00:00:00 2001 From: Rock Chin <1010553892@qq.com> Date: Sun, 14 May 2023 17:30:05 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E5=8A=A0=E8=BD=BD=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E7=9A=84=E8=BE=93=E5=87=BA=E6=94=B9=E4=B8=BAdebug=E7=BA=A7?= =?UTF-8?q?=E5=88=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/plugin/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/host.py b/pkg/plugin/host.py index af37c24c..8d242801 100644 --- a/pkg/plugin/host.py +++ b/pkg/plugin/host.py @@ -79,7 +79,7 @@ def walk_plugin_path(module, prefix='', path_prefix=''): __current_module_path__ = "plugins/"+path_prefix + item.name + '.py' importlib.import_module(module.__name__ + '.' + item.name) - logging.info('加载模块: plugins/{} 成功'.format(path_prefix + item.name + '.py')) + logging.debug('加载模块: plugins/{} 成功'.format(path_prefix + item.name + '.py')) except: logging.error('加载模块: plugins/{} 失败: {}'.format(path_prefix + item.name + '.py', sys.exc_info())) traceback.print_exc()