diff options
author | Teravus Ovares (Dan Olivares) | 2009-12-05 13:23:05 -0500 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-12-05 13:23:05 -0500 |
commit | 8e089b6d8d0d5b20cce6c812d987f77bc3957435 (patch) | |
tree | 3ef7ec1f6ba5e25c1739f5f3eec53c4339add390 /OpenSim | |
parent | * Fixes mantis 4416. Animator is dereferenced on logout (diff) | |
download | opensim-SC_OLD-8e089b6d8d0d5b20cce6c812d987f77bc3957435.zip opensim-SC_OLD-8e089b6d8d0d5b20cce6c812d987f77bc3957435.tar.gz opensim-SC_OLD-8e089b6d8d0d5b20cce6c812d987f77bc3957435.tar.bz2 opensim-SC_OLD-8e089b6d8d0d5b20cce6c812d987f77bc3957435.tar.xz |
* Fix line endings in BaseHttpServer.cs
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index 7de5c4c..75cdeb4 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -723,12 +723,12 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
723 | xmlRpcResponse = method(xmlRprcRequest, request.RemoteIPEndPoint); | 723 | xmlRpcResponse = method(xmlRprcRequest, request.RemoteIPEndPoint); |
724 | } | 724 | } |
725 | catch(Exception e) | 725 | catch(Exception e) |
726 | { | 726 | { |
727 | string errorMessage | 727 | string errorMessage |
728 | = String.Format( | 728 | = String.Format( |
729 | "Requested method [{0}] from {1} threw exception: {2} {3}", | 729 | "Requested method [{0}] from {1} threw exception: {2} {3}", |
730 | methodName, request.RemoteIPEndPoint.Address, e.Message, e.StackTrace); | 730 | methodName, request.RemoteIPEndPoint.Address, e.Message, e.StackTrace); |
731 | 731 | ||
732 | m_log.ErrorFormat("[BASE HTTP SERVER]: {0}", errorMessage); | 732 | m_log.ErrorFormat("[BASE HTTP SERVER]: {0}", errorMessage); |
733 | 733 | ||
734 | // if the registered XmlRpc method threw an exception, we pass a fault-code along | 734 | // if the registered XmlRpc method threw an exception, we pass a fault-code along |