Merge pull request #1865 from fcrisciani/fix-log

Fix warn log
This commit is contained in:
Madhu Venugopal 2017-07-28 13:49:07 -07:00 committed by GitHub
commit 4bdab1722a

View file

@ -228,8 +228,7 @@ func OptionNetworkControlPlaneMTU(exp int) Option {
logrus.Debugf("Network Control Plane MTU: %d", exp)
if exp < 1500 {
// if exp == 0 the value won't be used
logrus.Warnf("Received a MTU of %d, this value is very low,",
"the network control plane can misbehave", exp)
logrus.Warnf("Received a MTU of %d, this value is very low, the network control plane can misbehave", exp)
}
c.Daemon.NetworkControlPlaneMTU = exp
}