mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-11 01:30:06 -04:00
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.
This commit is contained in:
parent
b24ab44a55
commit
35bd020a3e
1 changed files with 0 additions and 1 deletions
|
|
@ -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…
Reference in a new issue