diff --git a/ray-operator/controllers/ray/raycluster_controller.go b/ray-operator/controllers/ray/raycluster_controller.go index e5924f6e834..35a31f3b1b5 100644 --- a/ray-operator/controllers/ray/raycluster_controller.go +++ b/ray-operator/controllers/ray/raycluster_controller.go @@ -706,7 +706,9 @@ func (r *RayClusterReconciler) reconcilePods(ctx context.Context, instance *rayv } } } else { - logger.Info("reconcilePods", "Worker Pod Name: ", workerPod.Name, " Status: ", workerPod.Status.Phase) + logger.Info("reconcilePods", + "Worker Pod Name", workerPod.Name, + "Status", workerPod.Status.Phase) } shouldDelete, reason := shouldDeletePod(workerPod, rayv1.WorkerNode) logger.Info("reconcilePods", "worker Pod", workerPod.Name, "shouldDelete", shouldDelete, "reason", reason)