From 256427f7f9ad5595f765f87288c99bc0aa9614d9 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Wed, 16 Feb 2022 22:29:27 +0530 Subject: [PATCH] Change log level for missing plugin (#19573) As discussed offline, this is not an actionable error message and should therefore be demoted to debug. ```release-note NONE ``` --- app/plugin_requests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/plugin_requests.go b/app/plugin_requests.go index fcb6ae9950..49b66262a1 100644 --- a/app/plugin_requests.go +++ b/app/plugin_requests.go @@ -34,7 +34,7 @@ func (ch *Channels) ServePluginRequest(w http.ResponseWriter, r *http.Request) { params := mux.Vars(r) hooks, err := pluginsEnvironment.HooksForPlugin(params["plugin_id"]) if err != nil { - mlog.Error("Access to route for non-existent plugin", + mlog.Debug("Access to route for non-existent plugin", mlog.String("missing_plugin_id", params["plugin_id"]), mlog.String("url", r.URL.String()), mlog.Err(err))