From 1a3c0e7f42cb497ab42bcf8cad6a8dec382c85fa Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Fri, 23 Jun 2023 22:02:03 +0800 Subject: [PATCH] :art: Support one-click enable/disable of all downloaded plugins https://github.com/siyuan-note/siyuan/issues/8523 --- kernel/model/plugin.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/model/plugin.go b/kernel/model/plugin.go index fce4ef1a4..85e1066f4 100644 --- a/kernel/model/plugin.go +++ b/kernel/model/plugin.go @@ -111,6 +111,7 @@ func LoadPetals(frontend string) (ret []*Petal) { logging.LogErrorf("unmarshal petal conf [%s] failed: %s", confPath, err) } else { if !petalConf.Enabled { + logging.LogInfof("plugin system has been disabled") return } }