diff options
author | Justin Clark-Casey (justincc) | 2015-02-19 23:09:43 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-02-19 23:09:43 +0000 |
commit | 7a86b01226199ec061f5723c79d190f729fc9a31 (patch) | |
tree | 87646c9588fc83f05c20c665e16fbc8d21c5bcfb /OpenSim | |
parent | Add the type of the unrecognized node to the HG asset mapping error message i... (diff) | |
download | opensim-SC_OLD-7a86b01226199ec061f5723c79d190f729fc9a31.zip opensim-SC_OLD-7a86b01226199ec061f5723c79d190f729fc9a31.tar.gz opensim-SC_OLD-7a86b01226199ec061f5723c79d190f729fc9a31.tar.bz2 opensim-SC_OLD-7a86b01226199ec061f5723c79d190f729fc9a31.tar.xz |
Make any exception that gets to LLClientView.ProcessSpecificPacketAsync() tells us the exception type as well as the message and stacktrace details.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index bb4f8a7..ee0f790 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -772,9 +772,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
772 | catch (Exception e) | 772 | catch (Exception e) |
773 | { | 773 | { |
774 | // Make sure that we see any exception caused by the asynchronous operation. | 774 | // Make sure that we see any exception caused by the asynchronous operation. |
775 | m_log.ErrorFormat( | 775 | m_log.Error( |
776 | "[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}", | 776 | string.Format( |
777 | packetObject.Pack, Name, e.Message, e.StackTrace); | 777 | "[LLCLIENTVIEW]: Caught exception while processing {0} for {1} ", packetObject.Pack, Name), |
778 | e); | ||
778 | } | 779 | } |
779 | } | 780 | } |
780 | 781 | ||