From ed3d0da055e99c5f18927b93e66739e7838b8d78 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sat, 30 May 2020 18:37:06 +0200 Subject: [PATCH] cmd/peakHandling.go: do not print what is prefetching --- cmd/peakHandling.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/peakHandling.go b/cmd/peakHandling.go index c7c0977..870f7e7 100644 --- a/cmd/peakHandling.go +++ b/cmd/peakHandling.go @@ -62,7 +62,6 @@ func prefetchPeakRequests(peakRequestMap *sync.Map) { sleepBetweenRequests := time.Duration(prefetchInterval*1000/peakRequestLen) * time.Millisecond peakRequestMap.Range(func(key interface{}, value interface{}) bool { r := value.(http.Request) - log.Printf("Prefetching %s\n", key) prefetchRequest(&r) peakRequestMap.Delete(key) time.Sleep(sleepBetweenRequests)