Make any exception that gets to LLClientView.ProcessSpecificPacketAsync() tells us the exception type as well as the message and stacktrace details.
parent
264047dba0
commit
7a86b01226
|
@ -772,9 +772,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// Make sure that we see any exception caused by the asynchronous operation.
|
// Make sure that we see any exception caused by the asynchronous operation.
|
||||||
m_log.ErrorFormat(
|
m_log.Error(
|
||||||
"[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}",
|
string.Format(
|
||||||
packetObject.Pack, Name, e.Message, e.StackTrace);
|
"[LLCLIENTVIEW]: Caught exception while processing {0} for {1} ", packetObject.Pack, Name),
|
||||||
|
e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue