diff --git a/main.go b/main.go index 54005bd..0ad9e55 100644 --- a/main.go +++ b/main.go @@ -497,6 +497,9 @@ func (s *server) ServeHTTP(w http.ResponseWriter, r *http.Request) { default: // Delegate everything else to autocert http‑01 challenge handler + lg := slog.New(slog.NewJSONHandler(os.Stdout, nil)) + slog.SetDefault(lg) + lg.Info("Call", r.URL.Path) s.mgr.HTTPHandler(nil).ServeHTTP(w, r) } }