Fix warn log

format wrong

Signed-off-by: Flavio Crisciani <flavio.crisciani@docker.com>
This commit is contained in:
Flavio Crisciani 2017-07-28 13:30:53 -07:00
parent 27c574aad0
commit bce3d1ec88
No known key found for this signature in database
GPG Key ID: 28CAFCE754CF3A48
1 changed files with 1 additions and 2 deletions

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
}