From e366fe340e802618fd9b76177c4ae3487b09c595 Mon Sep 17 00:00:00 2001 From: pascal Date: Wed, 4 Feb 2026 23:32:19 +0100 Subject: [PATCH] add log when listener is ready --- proxy/server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/server.go b/proxy/server.go index 2782911d9..cda6211d2 100644 --- a/proxy/server.go +++ b/proxy/server.go @@ -276,6 +276,7 @@ func (s *Server) ListenAndServe(ctx context.Context, addr string) (err error) { Handler: accessLog.Middleware(s.auth.Protect(s.proxy)), TLSConfig: tlsConfig, } + s.Logger.Debugf("starting listening on reverse proxy server address %s", addr) return s.https.ListenAndServeTLS("", "") }