Skip to content

Commit 951129c

Browse files
authored
Merge pull request #16985 from justinsb/turn_down_warning_level_when_asset_not_found
Dial down warning level when asset is not found
2 parents 5121af6 + c5b1834 commit 951129c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/assets/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ func (a *AssetBuilder) findHash(file *FileAsset) (*hashing.Hash, error) {
314314
return knownHash, nil
315315
}
316316

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

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

0 commit comments

Comments
 (0)