Fix node e2e log print

This commit is contained in:
Random-Liu 2016-05-24 11:34:40 -07:00
parent 7ad337a2c2
commit 22e4df74d8

View File

@ -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
}
}