diff options
author | UbitUmarov | 2012-06-22 18:04:12 +0100 |
---|---|---|
committer | UbitUmarov | 2012-06-22 18:04:12 +0100 |
commit | ba58d7a9b2dc1233e46006a20b8924788cbb53db (patch) | |
tree | d67d3d341304f7b565de3c4d574436656e07c2c9 /OpenSim | |
parent | fix turning off phanton always decreasing number of physical parts (diff) | |
download | opensim-SC-ba58d7a9b2dc1233e46006a20b8924788cbb53db.zip opensim-SC-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.gz opensim-SC-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.bz2 opensim-SC-ba58d7a9b2dc1233e46006a20b8924788cbb53db.tar.xz |
add a temp debug message
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 3 |
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 | ||