Commit 31735422 by Arve Knudsen Committed by GitHub

pkg/plugins: Only warn if plugins fail to load. Fixes #19846 (#19859)

pkg/plugins: Only warn if plugins fail to load. Fixes #19846
parent ccf42ccb
......@@ -187,7 +187,7 @@ func (pm *PluginManager) scan(pluginDir string) error {
}
if len(scanner.errors) > 0 {
return errutil.Wrapf(scanner.errors[0], "Some plugins failed to load")
pm.log.Warn("Some plugins failed to load", "errors", scanner.errors)
}
return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment