From 93f17980a113f3f476a0614be367a52b17f49f89 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 29 Dec 2022 12:21:25 +0530 Subject: [PATCH] Remove unnecessary debug log (#21959) This log is continuously spamming our community server and I see it all the time in my dev environment. Let's remove this to keep the logs clean. ```release-note NONE ``` --- api4/drafts.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api4/drafts.go b/api4/drafts.go index 102c164b8f..c3640f7a84 100644 --- a/api4/drafts.go +++ b/api4/drafts.go @@ -124,7 +124,6 @@ func deleteDraft(c *Context, w http.ResponseWriter, r *http.Request) { switch { case err.StatusCode == http.StatusNotFound: // If the draft doesn't exist in the server, we don't need to delete. - mlog.Debug("Unable to find the draft", mlog.Err(err)) ReturnStatusOK(w) default: c.Err = err