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 }