LogThreadPool: when the thread is for ProcessPacketMethod, also log the packet type

Resolves http://opensimulator.org/mantis/view.php?id=6945
This commit is contained in:
Oren Hurvitz
2013-12-19 10:51:10 +02:00
parent 4031933475
commit e735f76553
2 changed files with 13 additions and 4 deletions

View File

@@ -694,7 +694,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
cinfo.AsyncRequests[packet.Type.ToString()]++;
object obj = new AsyncPacketProcess(this, pprocessor.method, packet);
Util.FireAndForget(ProcessSpecificPacketAsync, obj);
Util.FireAndForget(ProcessSpecificPacketAsync, obj, packet.Type.ToString());
result = true;
}
else