diff --git a/vinegarUtil/WebLRU.go b/vinegarUtil/WebLRU.go index 4d1a868..c0697e0 100644 --- a/vinegarUtil/WebLRU.go +++ b/vinegarUtil/WebLRU.go @@ -49,7 +49,6 @@ func NewLRU(size int64) *Lru { } func NewSingleFileCache(pathlike string) *SingleFileCache { - entry := newLRUEntry(pathlike) sfc := SingleFileCache{path: pathlike, entry: entry} return &sfc @@ -64,8 +63,6 @@ func (l *Lru) Get(key string) (*LruEntry, bool) { } else { if exists { entry.mostRecentAccess = time.Now() - } else { - fmt.Printf("vinegarUtil miss for '%s'\n", key) } return entry, exists }