Skip to content

Commit

Permalink
Fix log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed May 29, 2018
1 parent 611878d commit 01e3086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ func (c *calicoCache) performDatastoreSync() error {
// Objects differ - queue an update to re-program if configured to do so.
if !c.reconcilerConfig.DisableUpdateOnChange {
c.log.WithField("key", key).Warn("Value for key has changed, queueing update to reprogram")
c.log.Debugf("Cached: %+v", cachedObj)
c.log.Debugf("Updated: %+v", obj)
c.log.Debugf("Cached: %#v", cachedObj)
c.log.Debugf("Updated: %#v", obj)
c.workqueue.Add(key)
}
continue
Expand Down

0 comments on commit 01e3086

Please sign in to comment.