1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-01 15:06:23 +00:00

drop log level to debug

This commit is contained in:
Harrison Affel
2022-07-14 12:36:51 -04:00
parent 0b3ae2aa0f
commit 4f2b3ba8ca

View File

@@ -645,7 +645,7 @@ func validateCRIDockerdOption(c *Cluster) error {
logrus.Debugf("Cluster version [%s] is not allowed to enable cri-dockerd", k8sVersion)
return fmt.Errorf("Enabling cri-dockerd for cluster version [%s] is not supported", k8sVersion)
}
logrus.Infof("cri-dockerd is enabled for cluster version [%s]", k8sVersion)
logrus.Debugf("cri-dockerd is enabled for cluster version [%s]", k8sVersion)
}
return nil
}