aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs4
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 fb6b11e..d05f72f 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -1350,7 +1350,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1350 } 1350 }
1351 else 1351 else
1352 { 1352 {
1353 m_log.DebugFormat("[LLUDPSERVER]: Dropping incoming {0} packet for dead client {1}", packet.Type, udpClient.AgentID); 1353 m_log.DebugFormat(
1354 "[LLUDPSERVER]: Dropped incoming {0} for dead client {1} in {2}",
1355 packet.Type, udpClient.AgentID, m_scene.RegionInfo.RegionName);
1354 } 1356 }
1355 } 1357 }
1356 1358