fix web request exception reporting properly this time

prebuild-update
Justin Clark-Casey (justincc) 2010-06-25 20:57:38 +01:00
parent 8629ba80bf
commit c7e7cb04a3
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ namespace OpenSim.Framework.Servers.HttpServer
} }
catch (Exception e) catch (Exception e)
{ {
m_log.Error(string.Format("[BASE HTTP SERVER]: OnRequest() failed with "), e); m_log.ErrorFormat("[BASE HTTP SERVER]: OnRequest() failed with {0}{1}", e.Message, e.StackTrace);
} }
} }