Remove startup error message on older version of ISO, sent to log instead

pull/15235/head
ckannon 2022-11-14 22:02:10 -05:00
parent 3198d106dc
commit c4c05a78eb
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ func provisionWithDriver(cmd *cobra.Command, ds registry.DriverState, existing *
func validateBuiltImageVersion(r command.Runner) {
res, err := r.RunCmd(exec.Command("cat", "/version.json"))
if err != nil {
out.WarningT("Unable to open version.json: {{.error}}", out.V{"error": err})
klog.Warningf("Unable to open version.json: %s", err)
return
}