From 2ca9a4c244f728ec47751b603df24371378f46ae Mon Sep 17 00:00:00 2001 From: Catherine Date: Thu, 18 Sep 2025 01:40:51 +0000 Subject: [PATCH] Revert "Log successful health check." This reverts commit 82f24d5508897c8703eb79f8727226ee5424530d. --- src/health.go | 2 -- 1 file changed, 2 deletions(-) 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") }