diff options
author | Justin Clark-Casey (justincc) | 2011-10-17 20:37:01 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-17 20:37:01 +0100 |
commit | 96ff2c63ed47e29a92cc79b6e8753d21e54da061 (patch) | |
tree | d5018818241cffaf4fafb8a9f55b85bf668260a1 /OpenSim/Region | |
parent | refactor: Use SOP.SitTargetAvatar instead of calling a special GetAvatarOnSit... (diff) | |
download | opensim-SC_OLD-96ff2c63ed47e29a92cc79b6e8753d21e54da061.zip opensim-SC_OLD-96ff2c63ed47e29a92cc79b6e8753d21e54da061.tar.gz opensim-SC_OLD-96ff2c63ed47e29a92cc79b6e8753d21e54da061.tar.bz2 opensim-SC_OLD-96ff2c63ed47e29a92cc79b6e8753d21e54da061.tar.xz |
Add avatar names to debug packet output
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index c30e559..95532e8 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -11617,7 +11617,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11617 | logPacket = false; | 11617 | logPacket = false; |
11618 | 11618 | ||
11619 | if (logPacket) | 11619 | if (logPacket) |
11620 | m_log.DebugFormat("[CLIENT]: Packet OUT {0}", packet.Type); | 11620 | m_log.DebugFormat("[CLIENT]: Packet OUT {0} to {1}", packet.Type, Name); |
11621 | } | 11621 | } |
11622 | 11622 | ||
11623 | m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, doAutomaticSplitting, method); | 11623 | m_udpServer.SendPacket(m_udpClient, packet, throttlePacketType, doAutomaticSplitting, method); |
@@ -11672,7 +11672,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11672 | outputPacket = false; | 11672 | outputPacket = false; |
11673 | 11673 | ||
11674 | if (outputPacket) | 11674 | if (outputPacket) |
11675 | m_log.DebugFormat("[CLIENT]: Packet IN {0}", packet.Type); | 11675 | m_log.DebugFormat("[CLIENT]: Packet IN {0} from {1}", packet.Type, Name); |
11676 | } | 11676 | } |
11677 | 11677 | ||
11678 | if (!ProcessPacketMethod(packet)) | 11678 | if (!ProcessPacketMethod(packet)) |