diff --git a/internal/httpproxy/auth.go b/internal/httpproxy/auth.go index cb90a4a8..5dca3f45 100644 --- a/internal/httpproxy/auth.go +++ b/internal/httpproxy/auth.go @@ -13,7 +13,6 @@ func (h *handler) isAuthorized(responseWriter http.ResponseWriter, request *http } basicAuth := request.Header.Get("Proxy-Authorization") if basicAuth == "" { - h.logger.Info("Proxy-Authorization header not found from " + request.RemoteAddr) responseWriter.Header().Set("Proxy-Authenticate", `Basic realm="Access to Gluetun over HTTP"`) responseWriter.WriteHeader(http.StatusProxyAuthRequired) return false