diff --git a/src/health.go b/src/health.go index 5834e36..76625db 100644 --- a/src/health.go +++ b/src/health.go @@ -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") }