Disable logging for health check endpoint

- Add log: false option to /health route to prevent K8s probe spam in logs
- Remove incorrect logger filter configuration from runtime.exs
This commit is contained in:
Graham McIntire 2026-01-06 13:43:57 -06:00
parent e02c2d2b8f
commit 02e0744c3c
No known key found for this signature in database

View file

@ -20,7 +20,7 @@ defmodule ToweropsWeb.Router do
# Health check endpoint for Kubernetes probes (no authentication required)
scope "/", ToweropsWeb do
get "/health", HealthController, :index
get "/health", HealthController, :index, log: false
end
scope "/", ToweropsWeb do