add log when listener is ready

This commit is contained in:
pascal
2026-02-04 23:32:19 +01:00
parent b01809f8e3
commit e366fe340e

View File

@@ -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("", "")
}