From 8d4412463c08b44328a00db6f2c2ea1cdf1e076c Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sat, 13 Jun 2026 18:38:06 +0800 Subject: [PATCH] fix: change logging level to debug for plugin backup messages --- app/chain/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/chain/system.py b/app/chain/system.py index 4456cb01..b73f4cdc 100644 --- a/app/chain/system.py +++ b/app/chain/system.py @@ -88,7 +88,7 @@ class SystemChain(ChainBase): if target_path.exists(): continue shutil.copytree(item, target_path) - logger.info(f"已备份插件目录: {item.name}") + logger.debug(f"已备份插件目录: {item.name}") # 如果是文件 elif item.is_file(): if target_path.exists():