diff --git a/CHANGELOG.md b/CHANGELOG.md index 182650e7..42922745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 issues. * Change build test exceptions declaration (linting). * Explicitly set http1.1 for service. +* Remove health check debug log messages. ### Security * Updated argo-workflows to v3.1.8 to address CVE-2021-37914 diff --git a/service/handlers.go b/service/handlers.go index 37b09e39..f866ed7e 100644 --- a/service/handlers.go +++ b/service/handlers.go @@ -57,7 +57,6 @@ type handler struct { func (h *handler) healthCheck(w http.ResponseWriter, r *http.Request) { vaultEndpoint := fmt.Sprintf("%s/v1/sys/health", h.env.VaultAddress) l := h.requestLogger(r, "op", "health-check", "vault-endpoint", vaultEndpoint) - level.Debug(l).Log("message", "executing") // #nosec response, err := http.Get(vaultEndpoint)