From 1c8442f72b8d15a213f068669f3324ad3376fa6b Mon Sep 17 00:00:00 2001 From: Deathmax Date: Sat, 4 Feb 2012 09:52:33 +0800 Subject: [PATCH] Warn instead of error. --- TShockAPI/PacketBufferer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TShockAPI/PacketBufferer.cs b/TShockAPI/PacketBufferer.cs index dc9db11c..fa057a64 100644 --- a/TShockAPI/PacketBufferer.cs +++ b/TShockAPI/PacketBufferer.cs @@ -196,15 +196,15 @@ namespace TShockAPI } catch (ObjectDisposedException e) { - Log.Error(e.ToString()); + Log.Warn(e.ToString()); } catch (SocketException e) { - Log.Error(e.ToString()); + Log.Warn(e.ToString()); } catch (IOException e) { - Log.Error(e.ToString()); + Log.Warn(e.ToString()); } return false; }