Skip to content

Commit

Permalink
Fix the debug->debugf (#1609)
Browse files Browse the repository at this point in the history
this is a shame cube situation
  • Loading branch information
vagababov authored Aug 11, 2020
1 parent f97925a commit 0ecf6f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (c *Impl) EnqueueAfter(obj interface{}, after time.Duration) {
func (c *Impl) EnqueueSlowKey(key types.NamespacedName) {
c.workQueue.SlowLane().Add(key)
c.logger.With(zap.Object(logkey.Key, logging.NamespacedName(key))).
Debug("Adding to the slow queue %s (depth(total/slow): %d/%d)",
Debugf("Adding to the slow queue %s (depth(total/slow): %d/%d)",
safeKey(key), c.workQueue.Len(), c.workQueue.SlowLane().Len())
}

Expand Down

0 comments on commit 0ecf6f8

Please sign in to comment.