aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoropensim mirror account2010-11-12 15:30:10 -0800
committeropensim mirror account2010-11-12 15:30:10 -0800
commitf0fac8ca3a936b1ea57fb3e0d1ede89e887ff909 (patch)
treef20ff537e2cc9a2f6ab07c14790979f997092f42 /OpenSim
parentMerge branch 'master' of /var/git/opensim/ (diff)
parentprovide avatar name in log if an exception ends up at the top of an async pac... (diff)
downloadopensim-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 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs5
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