diff --git a/paymentproxy/proxy.go b/paymentproxy/proxy.go index 38c23738e..76be16050 100644 --- a/paymentproxy/proxy.go +++ b/paymentproxy/proxy.go @@ -84,6 +84,7 @@ func NewPaymentProxy(proxyAddress string, nitroEndpoint string, destinationURL s // It then delegates to the reverse proxy to handle rewriting the request and sending it to the destination func (p *PaymentProxy) ServeHTTP(w http.ResponseWriter, r *http.Request) { fmt.Println("Sanity") + slog.Info("Sanity") // If the request is a health check, return a 200 OK if r.URL.Path == "/health" { w.WriteHeader(http.StatusOK)