diff options
author | Oren Hurvitz | 2013-12-19 10:51:10 +0200 |
---|---|---|
committer | Oren Hurvitz | 2014-03-25 08:01:41 +0100 |
commit | e735f765539dc2f9a6b5d072b114a5b0116dba9f (patch) | |
tree | a1a431d6d2e651fffd7799aa2e02ee589aa39087 /OpenSim/Region/ClientStack | |
parent | Refactored DebugFlagsEnum (diff) | |
download | opensim-SC_OLD-e735f765539dc2f9a6b5d072b114a5b0116dba9f.zip opensim-SC_OLD-e735f765539dc2f9a6b5d072b114a5b0116dba9f.tar.gz opensim-SC_OLD-e735f765539dc2f9a6b5d072b114a5b0116dba9f.tar.bz2 opensim-SC_OLD-e735f765539dc2f9a6b5d072b114a5b0116dba9f.tar.xz |
LogThreadPool: when the thread is for ProcessPacketMethod, also log the packet type
Resolves http://opensimulator.org/mantis/view.php?id=6945
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 86161c9..d9fe4e2 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -694,7 +694,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
694 | cinfo.AsyncRequests[packet.Type.ToString()]++; | 694 | cinfo.AsyncRequests[packet.Type.ToString()]++; |
695 | 695 | ||
696 | object obj = new AsyncPacketProcess(this, pprocessor.method, packet); | 696 | object obj = new AsyncPacketProcess(this, pprocessor.method, packet); |
697 | Util.FireAndForget(ProcessSpecificPacketAsync, obj); | 697 | Util.FireAndForget(ProcessSpecificPacketAsync, obj, packet.Type.ToString()); |
698 | result = true; | 698 | result = true; |
699 | } | 699 | } |
700 | else | 700 | else |