diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index e4a8809e..f5cadf7e 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -88,7 +88,7 @@ func PollUntil(pollInterval, timeOut <-chan time.Time, condition func() (string, return err } else if done { close(doneChan) // Stop spinner - fmt.Printf("\rPolling successful! Message: %s (Total time: %s)\n", logMessage, totalElapsed.Round(time.Second)) + klog.Infof("Operation completed successfully. Message: %s (Total time: %s)\n", logMessage, totalElapsed.Round(time.Second)) return nil } else {