1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-18 08:06:20 +00:00

Merge pull request #443 from ibuildthecloud/master

Move pull message to info
This commit is contained in:
Alena Prokharchyk
2018-03-27 10:05:03 -07:00
committed by GitHub

View File

@@ -209,7 +209,7 @@ func UseLocalOrPull(ctx context.Context, dClient *client.Client, hostname string
logrus.Debugf("[%s] No pull necessary, image [%s] exists on host [%s]", plane, containerImage, hostname)
return nil
}
logrus.Debugf("[%s] Pulling image [%s] on host [%s]", plane, containerImage, hostname)
logrus.Infof("[%s] Pulling image [%s] on host [%s]", plane, containerImage, hostname)
if err := pullImage(ctx, dClient, hostname, containerImage, prsMap); err != nil {
return err
}