diff --git a/pkg/health/exec.go b/pkg/health/exec.go index 352f09844de..3d31d95a3ed 100644 --- a/pkg/health/exec.go +++ b/pkg/health/exec.go @@ -43,7 +43,7 @@ func (e *ExecHealthChecker) HealthCheck(podFullName, podUUID string, currentStat return Unknown, fmt.Errorf("missing exec parameters") } data, err := e.runner.RunInContainer(podFullName, podUUID, container.Name, container.LivenessProbe.Exec.Command) - glog.V(1).Infof("container %s failed health check: %s", podFullName, string(data)) + glog.V(1).Infof("container %s health check response: %s", podFullName, string(data)) if err != nil { return Unknown, err }