diff --git a/pkg/minikube/machine/cache_images.go b/pkg/minikube/machine/cache_images.go index 450c1d6614..93f735467c 100644 --- a/pkg/minikube/machine/cache_images.go +++ b/pkg/minikube/machine/cache_images.go @@ -219,8 +219,8 @@ func CacheAndLoadImages(images []string) error { } } - glog.Infof("succeeded pushing to: ", strings.Join(succeeded, " ")) - glog.Infof("failed pushing to: ", strings.Join(failed, " ")) + glog.Infof("succeeded pushing to: %s", strings.Join(succeeded, " ")) + glog.Infof("failed pushing to: %s", strings.Join(failed, " ")) // Live pushes are not considered a failure return nil }