Skip to content

Commit

Permalink
removes extra logging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
petethepig committed Jun 17, 2021
1 parent c39f929 commit 5e56f27
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pkg/storage/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,6 @@ func (cache *Cache) Put(key string, val interface{}) {
}

func (cache *Cache) saveToDisk(key string, val interface{}) error {
logrus.WithFields(logrus.Fields{
"prefix": cache.prefix,
"key": key,
}).Debug("saving to disk")

// serialize the key and value
buf, err := cache.Bytes(key, val)
if err != nil {
Expand Down

0 comments on commit 5e56f27

Please sign in to comment.