From 09e52bc6850fc4adf2fb35ef7241fe967207d1e0 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sat, 24 Jan 2026 19:39:20 +0000 Subject: [PATCH] fix(httpproxy): remove info log when no Proxy-Authorization header is present --- internal/httpproxy/auth.go | 1 - 1 file changed, 1 deletion(-) 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