Remove stacktrace from image exists locally warning

This commit is contained in:
Matthew Penner 2020-09-20 14:20:42 -06:00
parent ff597672db
commit 62d5248b0c

View File

@ -364,7 +364,7 @@ func (e *Environment) ensureImageExists(image string) error {
log.WithFields(log.Fields{ log.WithFields(log.Fields{
"image": image, "image": image,
"container_id": e.Id, "container_id": e.Id,
"error": errors.New(err.Error()), "err": err.Error(),
}).Warn("unable to pull requested image from remote source, however the image exists locally") }).Warn("unable to pull requested image from remote source, however the image exists locally")
// Okay, we found a matching container image, in that case just go ahead and return // Okay, we found a matching container image, in that case just go ahead and return