Fix the debug->debugf (#1609)

this is a shame cube situation
This commit is contained in:
Victor Agababov 2020-08-11 14:58:05 -07:00 committed by GitHub
parent f97925ab85
commit 0ecf6f86c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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