Merge pull request #363 from stakater/update-log-level

Update log level
This commit is contained in:
Faizan Ahmad
2022-12-01 00:08:09 +01:00
committed by GitHub

View File

@@ -182,5 +182,6 @@ 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.Errorf("Dropping key out of the queue: %v", err)
logrus.Debugf("Dropping the key %q out of the queue: %v", key, err)
}