Skip to content

Commit

Permalink
fix: excessive go binary warnings (anchore#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
kzantow committed Dec 23, 2022
1 parent 16befce commit 6560273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syft/pkg/cataloger/golang/scan_binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func scanFile(reader unionreader.UnionReader, filename string) ([]*debug.BuildIn
for _, r := range readers {
bi, err := getBuildInfo(r)
if err != nil {
log.WithFields("file", filename, "error", err).Warn("unable to read golang buildinfo")
log.WithFields("file", filename, "error", err).Trace("unable to read golang buildinfo")
continue
}
if bi == nil {
Expand Down

0 comments on commit 6560273

Please sign in to comment.