Skip to content

Commit ae2384c

Browse files
authored
adding log level to noisy log (#551)
1 parent a08a9de commit ae2384c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/node/manager/manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,14 +573,14 @@ func (m *manager) check() healthz.Checker {
573573
return func(req *http.Request) error {
574574
err := rcHealthz.PingWithTimeout(func(c chan<- error) {
575575
randomName := uuid.New().String()
576-
m.Log.Info("starting health check call to acquire read lock of node manager through get node function")
576+
m.Log.V(1).Info("starting health check call to acquire read lock of node manager through get node function")
577577
_, found := m.GetNode(randomName)
578578
m.Log.V(1).Info("health check tested ping GetNode to check on datastore cache in node manager successfully", "TesedNodeName", randomName, "NodeFound", found)
579579
if m.SkipHealthCheck() {
580580
m.Log.Info("due to EC2 error, node manager skips node worker queue health check for now")
581581
} else {
582582
var ping interface{}
583-
m.Log.Info("starting health check to acquire lock on work queue of node manager")
583+
m.Log.V(1).Info("starting health check to acquire lock on work queue of node manager")
584584
m.worker.SubmitJob(ping)
585585
m.Log.V(1).Info("health check tested ping SubmitJob with a nil job to check on worker queue in node manager successfully")
586586
}

0 commit comments

Comments
 (0)