diff options
author | Justin Clark-Casey (justincc) | 2012-04-26 22:35:25 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-04-26 22:35:25 +0100 |
commit | cb6791fb30ce0fbe416f42d95b9737f9f30e02a7 (patch) | |
tree | c40795c9d04c91c7f05fd292b508445c92e3ff15 /OpenSim/Region/ClientStack/Linden/UDP | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-cb6791fb30ce0fbe416f42d95b9737f9f30e02a7.zip opensim-SC_OLD-cb6791fb30ce0fbe416f42d95b9737f9f30e02a7.tar.gz opensim-SC_OLD-cb6791fb30ce0fbe416f42d95b9737f9f30e02a7.tar.bz2 opensim-SC_OLD-cb6791fb30ce0fbe416f42d95b9737f9f30e02a7.tar.xz |
Tweak log messages on local region to region teleport path to help with problem resolution.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index d05f72f..edf91cb 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -916,7 +916,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
916 | UDPPacketBuffer buffer = (UDPPacketBuffer)array[0]; | 916 | UDPPacketBuffer buffer = (UDPPacketBuffer)array[0]; |
917 | UseCircuitCodePacket uccp = (UseCircuitCodePacket)array[1]; | 917 | UseCircuitCodePacket uccp = (UseCircuitCodePacket)array[1]; |
918 | 918 | ||
919 | m_log.DebugFormat("[LLUDPSERVER]: Handling UseCircuitCode request from {0}", buffer.RemoteEndPoint); | 919 | m_log.DebugFormat( |
920 | "[LLUDPSERVER]: Handling UseCircuitCode request for circuit {0} from {1}", | ||
921 | uccp.CircuitCode.Code, buffer.RemoteEndPoint); | ||
920 | 922 | ||
921 | remoteEndPoint = (IPEndPoint)buffer.RemoteEndPoint; | 923 | remoteEndPoint = (IPEndPoint)buffer.RemoteEndPoint; |
922 | 924 | ||