From 1ad8c70c36ddc66b0741db319efaf45952f13d16 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Thu, 6 Dec 2018 16:47:40 -0800 Subject: [PATCH] Lower log level for following redirects. (#3972) --- va/http.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/va/http.go b/va/http.go index eac1ed3b4..0c89c526b 100644 --- a/va/http.go +++ b/va/http.go @@ -406,7 +406,7 @@ func (va *ValidationAuthorityImpl) processHTTPValidation( records := []core.ValidationRecord{baseRecord} numRedirects := 0 processRedirect := func(req *http.Request, via []*http.Request) error { - va.log.Infof("processing a HTTP redirect from the server to %q\n", req.URL.String()) + va.log.Debugf("processing a HTTP redirect from the server to %q\n", req.URL.String()) // Only process up to maxRedirect redirects if numRedirects > maxRedirect { return berrors.ConnectionFailureError("Too many redirects") @@ -437,7 +437,7 @@ func (va *ValidationAuthorityImpl) processHTTPValidation( if err != nil { return err } - va.log.Infof("following redirect to host %q url %q\n", req.Host, req.URL.String()) + va.log.Debugf("following redirect to host %q url %q\n", req.Host, req.URL.String()) return nil }