From fb822af0e9c15717e7fc41f8ee16e1320d8dc613 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Mon, 24 Jan 2011 22:19:40 +0000 Subject: [PATCH] It's probably worth including the stack trace for this warning, since it can come from various different places. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6466 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/server/net/PresentsConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/threerings/presents/server/net/PresentsConnection.java b/src/main/java/com/threerings/presents/server/net/PresentsConnection.java index 9fa8a29a5..31818a106 100644 --- a/src/main/java/com/threerings/presents/server/net/PresentsConnection.java +++ b/src/main/java/com/threerings/presents/server/net/PresentsConnection.java @@ -237,7 +237,7 @@ public class PresentsConnection extends Connection // don't log a warning for the ever-popular "the client dropped the connection" failure String msg = ioe.getMessage(); if (msg == null || msg.indexOf("reset by peer") == -1) { - log.warning("Error reading message from socket", "channel", _channel, "error", ioe); + log.warning("Error reading message from socket", "channel", _channel, ioe); } // deal with the failure networkFailure(ioe);