diff --git a/internal/pkg/controller/controller.go b/internal/pkg/controller/controller.go index efed3228..6012ada1 100644 --- a/internal/pkg/controller/controller.go +++ b/internal/pkg/controller/controller.go @@ -145,7 +145,7 @@ func (c *Controller) handleErr(err error, key interface{}) { // This controller retries 5 times if something goes wrong. After that, it stops trying. if c.queue.NumRequeues(key) < 5 { - logrus.Errorf("Error syncing events %v: %v", key, err) + logrus.Errorf("Error syncing events: %v", err) // Re-enqueue the key rate limited. Based on the rate limiter on the // queue and the re-enqueue history, the key will be processed later again.