Warn instead of error.
This commit is contained in:
parent
9a463d36e6
commit
1c8442f72b
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue