mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
Merge pull request #72620 from dims/log-health-check-failure-at-level-4
Log Health Check failure at Verbosity Level - 4
This commit is contained in:
commit
2fcdb50f0f
@ -167,7 +167,7 @@ func handleRootHealthz(checks ...HealthzChecker) http.HandlerFunc {
|
|||||||
if err := check.Check(r); err != nil {
|
if err := check.Check(r); err != nil {
|
||||||
// don't include the error since this endpoint is public. If someone wants more detail
|
// don't include the error since this endpoint is public. If someone wants more detail
|
||||||
// they should have explicit permission to the detailed checks.
|
// they should have explicit permission to the detailed checks.
|
||||||
klog.V(6).Infof("healthz check %v failed: %v", check.Name(), err)
|
klog.V(4).Infof("healthz check %v failed: %v", check.Name(), err)
|
||||||
fmt.Fprintf(&verboseOut, "[-]%v failed: reason withheld\n", check.Name())
|
fmt.Fprintf(&verboseOut, "[-]%v failed: reason withheld\n", check.Name())
|
||||||
failed = true
|
failed = true
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user