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
```
Этот коммит содержится в:
Agniva De Sarker
2022-02-16 22:29:27 +05:30
коммит произвёл GitHub
родитель fa70696d77
Коммит 256427f7f9

Просмотреть файл

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