catch more error exception cases on fetchinventory req parsing
parent
f85e932f59
commit
ddef089eaa
|
@ -70,7 +70,7 @@ namespace OpenSim.Capabilities.Handlers
|
||||||
{
|
{
|
||||||
hash = (Hashtable)LLSD.LLSDDeserialize(Utils.StringToBytes(request));
|
hash = (Hashtable)LLSD.LLSDDeserialize(Utils.StringToBytes(request));
|
||||||
}
|
}
|
||||||
catch (LLSD.LLSDParseException e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("[WEB FETCH INV DESC HANDLER]: Fetch error: {0}{1}" + e.Message, e.StackTrace);
|
m_log.ErrorFormat("[WEB FETCH INV DESC HANDLER]: Fetch error: {0}{1}" + e.Message, e.StackTrace);
|
||||||
m_log.Error("Request: " + request);
|
m_log.Error("Request: " + request);
|
||||||
|
|
Loading…
Reference in New Issue