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