From 5870c622c740fa7ea42bad66b760b04ff7e78f33 Mon Sep 17 00:00:00 2001 From: Nick Turner Date: Tue, 4 Oct 2022 11:01:37 -0700 Subject: [PATCH] Remove log line from expiration cache Kubernetes-commit: e7bfd5909f5540f884a8bb914a9230c9bf7c2803 --- tools/cache/expiration_cache.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/cache/expiration_cache.go b/tools/cache/expiration_cache.go index 3f272b80..813916eb 100644 --- a/tools/cache/expiration_cache.go +++ b/tools/cache/expiration_cache.go @@ -20,7 +20,6 @@ import ( "sync" "time" - "k8s.io/klog/v2" "k8s.io/utils/clock" ) @@ -100,7 +99,6 @@ func (c *ExpirationCache) getOrExpire(key string) (interface{}, bool) { return nil, false } if c.expirationPolicy.IsExpired(timestampedItem) { - klog.V(4).Infof("Entry %v: %+v has expired", key, timestampedItem.Obj) c.cacheStorage.Delete(key) return nil, false }