Log out digest when digest is invalid

This commit is contained in:
Harry Zhang 2017-05-25 16:43:47 +08:00
parent 4def5add11
commit 4f4b161fc7

View File

@ -112,7 +112,7 @@ func matchImageIDOnly(inspected dockertypes.ImageInspect, image string) bool {
digest, isDigested := ref.(dockerref.Digested)
if !isDigested {
glog.V(4).Infof("the image reference %q was not a digest reference")
glog.V(4).Infof("the image reference %q was not a digest reference", image)
return false
}