From 82f24d5508897c8703eb79f8727226ee5424530d Mon Sep 17 00:00:00 2001 From: Catherine Date: Wed, 17 Sep 2025 18:31:38 +0000 Subject: [PATCH] Log successful health check. --- src/health.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/health.go b/src/health.go index 76625db..5834e36 100644 --- a/src/health.go +++ b/src/health.go @@ -2,10 +2,12 @@ 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") }