From 5c6918e3ce423f8f2ec1eee7a6eb6141636ce793 Mon Sep 17 00:00:00 2001 From: Felipe M Date: Sun, 21 Feb 2021 22:14:37 +0100 Subject: [PATCH] Moved cache log lines to trace level --- http.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http.go b/http.go index e31a9d1..ade7f96 100644 --- a/http.go +++ b/http.go @@ -72,8 +72,8 @@ func doRequest(method string, requestURL string) (*Response, error) { logrus.Tracef("Response body: %s", body) // Write cache - logrus.Infof("Writting cache for %s", parsedURL.String()) - logrus.Infof("Writting cache to: %s", getCacheFilename(parsedURL)) + logrus.Tracef("Writting cache for %s", parsedURL.String()) + logrus.Tracef("Writting cache to: %s", getCacheFilename(parsedURL)) errWriteCache := ioutil.WriteFile(getCachePath(parsedURL), body, 0644) if errWriteCache != nil { logrus.Warnf("Can't write to cache: %s", errWriteCache)