Make any exception that gets to LLClientView.ProcessSpecificPacketAsync() tells us the exception type as well as the message and stacktrace details.

inv-download
Justin Clark-Casey (justincc) 2015-02-19 23:09:43 +00:00
parent 264047dba0
commit 7a86b01226
1 changed files with 4 additions and 3 deletions

View File

@ -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);
} }
} }