diff --git a/syft/pkg/cataloger/golang/parse_go_binary.go b/syft/pkg/cataloger/golang/parse_go_binary.go index 31f6ca2cd..80008bd3a 100644 --- a/syft/pkg/cataloger/golang/parse_go_binary.go +++ b/syft/pkg/cataloger/golang/parse_go_binary.go @@ -85,12 +85,12 @@ func makeGoMainPackage(mod *debug.BuildInfo, arch string, location source.Locati // 2) reading file headers from binaries compiled by < go1.18 func getArchs(readers []io.ReaderAt, builds []*debug.BuildInfo) []string { if len(readers) != len(builds) { - log.Warnf("golang cataloger: bin parsing: number of builds and readers doesn't match") + log.Trace("golang cataloger: bin parsing: number of builds and readers doesn't match") return nil } if len(readers) == 0 || len(builds) == 0 { - log.Warnf("golang cataloger: bin parsing: %d readers and %d build info items", len(readers), len(builds)) + log.Tracef("golang cataloger: bin parsing: %d readers and %d build info items", len(readers), len(builds)) return nil } @@ -107,7 +107,7 @@ func getArchs(readers []io.ReaderAt, builds []*debug.BuildInfo) []string { for i, r := range readers { a, err := getGOARCHFromBin(r) if err != nil { - log.Warnf("golang cataloger: bin parsing: getting arch from binary: %v", err) + log.Tracef("golang cataloger: bin parsing: getting arch from binary: %v", err) continue }