Revert "Log successful health check."

This reverts commit 82f24d5508.
This commit is contained in:
Catherine
2025-09-18 01:40:51 +00:00
parent c9b2cbb52e
commit 2ca9a4c244

View File

@@ -2,12 +2,10 @@ package main
import (
"fmt"
"log"
"net/http"
)
func ServeHealth(w http.ResponseWriter, r *http.Request) {
log.Println("health: ok")
w.WriteHeader(http.StatusOK)
fmt.Fprintln(w, "ok")
}