From aafe3365ebbfec9dfce2272ddad0f545bd5a3141 Mon Sep 17 00:00:00 2001 From: faizanahmad055 Date: Wed, 30 Nov 2022 22:34:02 +0100 Subject: [PATCH] Update log level Signed-off-by: faizanahmad055 --- internal/pkg/controller/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/controller/controller.go b/internal/pkg/controller/controller.go index 06bc00f..c71d75c 100644 --- a/internal/pkg/controller/controller.go +++ b/internal/pkg/controller/controller.go @@ -182,5 +182,5 @@ func (c *Controller) handleErr(err error, key interface{}) { c.queue.Forget(key) // Report to an external entity that, even after several retries, we could not successfully process this key runtime.HandleError(err) - logrus.Infof("Dropping the key %q out of the queue: %v", key, err) + logrus.Debugf("Dropping the key %q out of the queue: %v", key, err) }