* Added a little more log info in LLUDPServer

This commit is contained in:
lbsa71
2008-08-09 18:37:20 +00:00
parent 3242b09344
commit d4b8e06d55

View File

@@ -274,8 +274,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
m_socket.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null);
}
catch (SocketException)
catch (SocketException e)
{
m_log.ErrorFormat("[UDPSERVER]: BeginRecieve threw exception " + e.Message + ": " + e.StackTrace );
ResetEndPoint();
}
}