We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4ac50 commit 073a979Copy full SHA for 073a979
code/base-project/image-scan/dockerimageprocessing/image.go
@@ -69,7 +69,7 @@ func (ii *ImageInfo) findImages(node interface{}, path string, images *map[strin
69
// Directly check for image specification here
70
imagePath, isImage := ii.constructImagePath(node)
71
if isImage {
72
- ii.logger.Info("Found Docker Image specification", zap.String("path", currentNode.Path+".tag"), zap.String("imagePath", imagePath))
+ ii.logger.Info("Found Docker Image specification:", zap.String("path", currentNode.Path+".tag"), zap.String("imagePath", imagePath))
73
(*images)[currentNode.Path+".tag"] = imagePath
74
continue // Found an image specification, no need to go deeper in this branch
75
}
0 commit comments