1
0
mirror of https://github.com/rancher/os.git synced 2025-08-01 06:59:05 +00:00

Change OEM log message

This commit is contained in:
Darren Shepherd 2016-02-04 08:44:08 -07:00
parent 8ac9b1137b
commit 77242012e7

View File

@ -119,7 +119,9 @@ func mountOem(cfg *config.CloudConfig) (*config.CloudConfig, error) {
}
}
if err := mountConfigured("oem", cfg.Rancher.State.OemDev, cfg.Rancher.State.OemFsType, config.OEM); err != nil {
log.Infof("Not mounting OEM: %v", err)
log.Debugf("Not mounting OEM: %v", err)
} else {
log.Infof("Mounted OEM: %s", cfg.Rancher.State.OemDev)
}
return cfg, nil
}