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)
|
||||
{
|
||||
// Make sure that we see any exception caused by the asynchronous operation.
|
||||
m_log.ErrorFormat(
|
||||
"[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}",
|
||||
packetObject.Pack, Name, e.Message, e.StackTrace);
|
||||
m_log.Error(
|
||||
string.Format(
|
||||
"[LLCLIENTVIEW]: Caught exception while processing {0} for {1} ", packetObject.Pack, Name),
|
||||
e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue