From 22e4df74d81c1cd997dd923b12346fb9cd6546c7 Mon Sep 17 00:00:00 2001 From: Random-Liu Date: Tue, 24 May 2016 11:34:40 -0700 Subject: [PATCH] Fix node e2e log print --- test/e2e_node/container_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/container_list.go b/test/e2e_node/container_list.go index f05a18e8b3d..d252ae526b9 100644 --- a/test/e2e_node/container_list.go +++ b/test/e2e_node/container_list.go @@ -53,7 +53,7 @@ func PrePullAllImages() error { for _, image := range ImageRegistry { output, err := exec.Command("docker", "pull", image).CombinedOutput() if err != nil { - glog.Warning("Could not pre-pull image %s %v output: %s", image, err, output) + glog.Warningf("Could not pre-pull image %s %v output: %s", image, err, output) return err } }