Browse Source

Fix warn log

format wrong

Signed-off-by: Flavio Crisciani <flavio.crisciani@docker.com>
Flavio Crisciani 8 năm trước cách đây
mục cha
commit
ecb3daa49e
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      libnetwork/config/config.go

+ 1 - 2
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
 	}