File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
cmd/operator-verify/manifests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ func manifestsFunc(cmd *cobra.Command, args []string) {
64
64
65
65
for _ , result := range nonEmptyResults {
66
66
for _ , err := range result .Errors {
67
- log .Errorf (err .Error ())
67
+ log .Error (err .Error ())
68
68
}
69
69
for _ , err := range result .Warnings {
70
- log .Warnf (err .Error ())
70
+ log .Warn (err .Error ())
71
71
}
72
72
}
73
73
Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ func (data *multiArchValidator) checkNodeAffinity(images map[string][]platform)
513
513
if ! imagePlatformDataValid {
514
514
// Node affinity info is missing from CSV (or invalid)
515
515
data .warns = append (data .warns ,
516
- fmt .Errorf ("check if the CSV is missing a node affinity configuration for the image: %q. " +
516
+ fmt .Errorf ("check if the CSV is missing a node affinity configuration for the image: %q. " ,
517
517
image ,
518
518
))
519
519
}
You can’t perform that action at this time.
0 commit comments