* Fix line endings in BaseHttpServer.cs
parent
c4b6010fb3
commit
8e089b6d8d
|
@ -723,12 +723,12 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
xmlRpcResponse = method(xmlRprcRequest, request.RemoteIPEndPoint);
|
xmlRpcResponse = method(xmlRprcRequest, request.RemoteIPEndPoint);
|
||||||
}
|
}
|
||||||
catch(Exception e)
|
catch(Exception e)
|
||||||
{
|
{
|
||||||
string errorMessage
|
string errorMessage
|
||||||
= String.Format(
|
= String.Format(
|
||||||
"Requested method [{0}] from {1} threw exception: {2} {3}",
|
"Requested method [{0}] from {1} threw exception: {2} {3}",
|
||||||
methodName, request.RemoteIPEndPoint.Address, e.Message, e.StackTrace);
|
methodName, request.RemoteIPEndPoint.Address, e.Message, e.StackTrace);
|
||||||
|
|
||||||
m_log.ErrorFormat("[BASE HTTP SERVER]: {0}", errorMessage);
|
m_log.ErrorFormat("[BASE HTTP SERVER]: {0}", errorMessage);
|
||||||
|
|
||||||
// if the registered XmlRpc method threw an exception, we pass a fault-code along
|
// if the registered XmlRpc method threw an exception, we pass a fault-code along
|
||||||
|
|
Loading…
Reference in New Issue