aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2012-06-22 18:04:12 +0100
committerUbitUmarov2012-06-22 18:04:12 +0100
commitba58d7a9b2dc1233e46006a20b8924788cbb53db (patch)
treed67d3d341304f7b565de3c4d574436656e07c2c9
parent fix turning off phanton always decreasing number of physical parts (diff)
downloadopensim-SC_OLD-ba58d7a9b2dc1233e46006a20b8924788cbb53db.zip
opensim-SC_OLD-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.gz
opensim-SC_OLD-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.bz2
opensim-SC_OLD-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.xz
add a temp debug message
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 75f783b..3d3fb8e 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -717,7 +717,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
717 udpClient = ((LLClientView)client).UDPClient; 717 udpClient = ((LLClientView)client).UDPClient;
718 718
719 if (!udpClient.IsConnected) 719 if (!udpClient.IsConnected)
720 {
721 m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName);
720 return; 722 return;
723 }
721 724
722 #endregion Packet to Client Mapping 725 #endregion Packet to Client Mapping
723 726