Log listen address

This commit is contained in:
Tim Van Baak 2025-02-10 06:22:43 -08:00
parent e014b9f9b2
commit cafa1a6665

View File

@ -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))
}