plugin-getter: rm vocal log on checksum entries

When a checksum file for a release is downloaded and iterated upon to
find the compatible binary for a release, we used to log each
non-compatible entry in the logs.

This is noisy as we know there's going to be multiple entries that don't
match the host's os/arch, and there's no good reason to show those, so
we silence them.
pull/12964/head
Lucas Bajolet 2 years ago committed by Lucas Bajolet
parent b24ab44a55
commit 35bd020a3e

@ -721,7 +721,6 @@ func (pr *Requirement) InstallLatest(opts InstallOptions) (*Installation, error)
continue
}
if err := entry.validate("v"+version.String(), opts.BinaryInstallationOptions); err != nil {
log.Printf("[INFO] ignoring invalid remote binary %s: %s", entry.Filename, err)
continue
}

Loading…
Cancel
Save