From b0e18fdc418a65c89e57977bc8cbc0d7fc0a961b Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Tue, 17 Sep 2024 22:53:50 +0300 Subject: [PATCH] Remove debug logs Signed-off-by: Yarden Shoham --- pkg/cache/cache.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/cache/cache.go b/pkg/cache/cache.go index fabe93c86..552d349d5 100644 --- a/pkg/cache/cache.go +++ b/pkg/cache/cache.go @@ -16,7 +16,6 @@ limitations under the License. package cache import ( - "fmt" "sync" ) @@ -60,13 +59,11 @@ func (c *ConcurrentMapCache[V]) Set(key string, value V) { c.mu.Lock() defer c.mu.Unlock() c.items[key] = value - fmt.Println("set", key) } func (c *ConcurrentMapCache[V]) Get(key string) (V, bool) { c.mu.RLock() defer c.mu.RUnlock() value, exists := c.items[key] - fmt.Println("get", key, "exists", exists) return value, exists }