From f0b9713af73687b6b6eac55e2caf07748156ea2a Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 23 Oct 2021 17:38:46 +0200 Subject: [PATCH] [plugins] Move missing plugin-dir warning to debug level Signed-off-by: Knut Ahlers --- plugins.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.go b/plugins.go index a9232b4..2821400 100644 --- a/plugins.go +++ b/plugins.go @@ -20,7 +20,7 @@ func loadPlugins(pluginDir string) error { d, err := os.Stat(pluginDir) if err != nil { if os.IsNotExist(err) { - logger.Warn("Plugin directory not found, skipping") + logger.Debug("Plugin directory not found, skipping") return nil } return errors.Wrap(err, "getting plugin-dir info")