1
0
mirror of https://github.com/rancher/os.git synced 2025-04-27 19:15:23 +00:00

Reduce log output level

This commit is contained in:
niusmallnan 2019-07-01 16:46:29 +08:00
parent a37efde319
commit f87c5f0b5a

View File

@ -96,14 +96,14 @@ func AllDefaultGWOK(timeout int) error {
if checkAllDefaultGW() {
break
}
log.Info("Waiting for the default gateway ready")
log.Debug("Waiting for the default gateway ready")
}
if err != nil {
return err
}
log.Info("The default gateway is ready")
log.Debug("The default gateway is ready")
return nil
}