From b414e3b3506e2e7fa5231d57ec9e735e60d2717f Mon Sep 17 00:00:00 2001 From: faizanahmad055 Date: Wed, 30 Nov 2022 22:37:50 +0100 Subject: [PATCH] Update log level Signed-off-by: faizanahmad055 --- internal/pkg/controller/controller.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/pkg/controller/controller.go b/internal/pkg/controller/controller.go index 4efab9f7..53e92379 100644 --- a/internal/pkg/controller/controller.go +++ b/internal/pkg/controller/controller.go @@ -182,6 +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.Errorf("Dropping key out of the queue: %v", err) - logrus.Debugf("Dropping the key %q out of the queue: %v", key, err) + logrus.Infof("Dropping key out of the queue: %v", err) }