We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 764606e commit e514954Copy full SHA for e514954
pkg/scheduler/health_checker.go
@@ -81,10 +81,10 @@ func (c *HealthChecker) runOnce(schedulerContext *ClusterContext) {
81
result := GetSchedulerHealthStatus(schedulerMetrics, schedulerContext)
82
updateSchedulerLastHealthStatus(result, schedulerContext)
83
if !result.Healthy {
84
- log.Logger().Error("Scheduler is not healthy",
+ log.Logger().Warn("Scheduler is not healthy",
85
zap.Any("health check values", result.HealthChecks))
86
} else {
87
- log.Logger().Info("Scheduler is healthy",
+ log.Logger().Debug("Scheduler is healthy",
88
89
}
90
0 commit comments