fix: change logging level to debug for plugin backup messages

This commit is contained in:
jxxghp
2026-06-13 18:38:06 +08:00
parent 0189463a09
commit 8d4412463c

View File

@@ -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():