Fix node e2e log print

pull/6/head
Random-Liu 2016-05-24 11:34:40 -07:00
parent 7ad337a2c2
commit 22e4df74d8
1 changed files with 1 additions and 1 deletions

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