From cafa1a6665500713828398eaa36e5a6f800d3425 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Mon, 10 Feb 2025 06:22:43 -0800 Subject: [PATCH] Log listen address --- web/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/web/main.go b/web/main.go index 3585738..4746a68 100644 --- a/web/main.go +++ b/web/main.go @@ -49,6 +49,7 @@ func RunServer(db core.DB, addr string, port string) { handleFunc("PATCH /item/{source}/{id}/punt", env.puntItem, env.authed, logged) handleFunc("POST /mass-deactivate", env.massDeactivate, env.authed, logged) + log.Printf("listening on %s", bind) log.Fatal(http.ListenAndServe(bind, nil)) }