Skip to content

Commit

Permalink
Merge pull request #16985 from justinsb/turn_down_warning_level_when_…
Browse files Browse the repository at this point in the history
…asset_not_found

Dial down warning level when asset is not found
  • Loading branch information
k8s-ci-robot authored Dec 7, 2024
2 parents 5121af6 + c5b1834 commit 951129c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/assets/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ func (a *AssetBuilder) findHash(file *FileAsset) (*hashing.Hash, error) {
return knownHash, nil
}

klog.Infof("asset %q is not well-known, downloading hash", file.CanonicalURL)
klog.V(2).Infof("asset %q is not well-known, downloading hash", file.CanonicalURL)

// We now prefer sha256 hashes
for backoffSteps := 1; backoffSteps <= 3; backoffSteps++ {
Expand Down

0 comments on commit 951129c

Please sign in to comment.