diff options
author | opensim mirror account | 2010-11-12 15:30:10 -0800 |
---|---|---|
committer | opensim mirror account | 2010-11-12 15:30:10 -0800 |
commit | f0fac8ca3a936b1ea57fb3e0d1ede89e887ff909 (patch) | |
tree | f20ff537e2cc9a2f6ab07c14790979f997092f42 /OpenSim | |
parent | Merge branch 'master' of /var/git/opensim/ (diff) | |
parent | provide avatar name in log if an exception ends up at the top of an async pac... (diff) | |
download | opensim-SC_OLD-f0fac8ca3a936b1ea57fb3e0d1ede89e887ff909.zip opensim-SC_OLD-f0fac8ca3a936b1ea57fb3e0d1ede89e887ff909.tar.gz opensim-SC_OLD-f0fac8ca3a936b1ea57fb3e0d1ede89e887ff909.tar.bz2 opensim-SC_OLD-f0fac8ca3a936b1ea57fb3e0d1ede89e887ff909.tar.xz |
Merge branch 'master' of /var/git/opensim/
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 4aa19d1..8d85d1a 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -651,8 +651,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
651 | catch (Exception e) | 651 | catch (Exception e) |
652 | { | 652 | { |
653 | // Make sure that we see any exception caused by the asynchronous operation. | 653 | // Make sure that we see any exception caused by the asynchronous operation. |
654 | m_log.Error( | 654 | m_log.ErrorFormat( |
655 | string.Format("[LLCLIENTVIEW]: Caught exception while processing {0}", packetObject.Pack), e); | 655 | "[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}", |
656 | packetObject.Pack, Name, e.Message, e.StackTrace); | ||
656 | } | 657 | } |
657 | } | 658 | } |
658 | 659 | ||