From dab3d99890829814aa5a6f28d9ec77b8240ad2af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 22 Jun 2013 14:28:00 +0200 Subject: [PATCH] write another socket error catch into server.log --- OpenRA.Game/Server/Connection.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Game/Server/Connection.cs b/OpenRA.Game/Server/Connection.cs index 0551e23571..098caa9515 100644 --- a/OpenRA.Game/Server/Connection.cs +++ b/OpenRA.Game/Server/Connection.cs @@ -65,6 +65,7 @@ namespace OpenRA.Server if (e.SocketErrorCode == SocketError.WouldBlock) break; server.DropClient(this); + Log.Write("server", "Dropping client {0} because reading the data failed: {1}", this.PlayerIndex.ToString(), e); return false; } }