This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(health): make logs for health check requests debug-level

it floods logs otherwise

+1 -1
+1 -1
health.go
··· 20 20 } 21 21 22 22 func healthHandler(w http.ResponseWriter, r *http.Request) { 23 - ll.Log("Checking", "cyan", "health due to request from %s", r.RemoteAddr) 23 + ll.Debug("Checking health due to request from %s", r.RemoteAddr) 24 24 // Set the content type to JSON 25 25 w.Header().Set("Content-Type", "application/json") 26 26