Warn instead of error.

This commit is contained in:
Deathmax 2012-02-04 09:52:33 +08:00
parent 9a463d36e6
commit 1c8442f72b

View file

@ -196,15 +196,15 @@ namespace TShockAPI
} }
catch (ObjectDisposedException e) catch (ObjectDisposedException e)
{ {
Log.Error(e.ToString()); Log.Warn(e.ToString());
} }
catch (SocketException e) catch (SocketException e)
{ {
Log.Error(e.ToString()); Log.Warn(e.ToString());
} }
catch (IOException e) catch (IOException e)
{ {
Log.Error(e.ToString()); Log.Warn(e.ToString());
} }
return false; return false;
} }