From ecb3daa49e6b38a23aabf28b69ff52dc9a27747f Mon Sep 17 00:00:00 2001 From: Flavio Crisciani Date: Fri, 28 Jul 2017 13:30:53 -0700 Subject: [PATCH] Fix warn log format wrong Signed-off-by: Flavio Crisciani --- libnetwork/config/config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libnetwork/config/config.go b/libnetwork/config/config.go index f3c49e89b1..a2e43e3a53 100644 --- a/libnetwork/config/config.go +++ b/libnetwork/config/config.go @@ -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 }