diff --git a/operator/pkg/util/util.go b/operator/pkg/util/util.go index 17c9784e0..509ec81b8 100644 --- a/operator/pkg/util/util.go +++ b/operator/pkg/util/util.go @@ -35,7 +35,7 @@ func (d *Downloader) Read(p []byte) (n int, err error) { } d.Current += int64(n) - klog.Info("\rDownloading...[ %.2f%% ]", float64(d.Current*10000/d.Total)/100) + klog.Infof("\rDownloading...[ %.2f%% ]", float64(d.Current*10000/d.Total)/100) return }