aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-04-26 16:04:49 +0100
committerJustin Clark-Casey (justincc)2012-04-26 16:04:49 +0100
commitb0cbf16c19495814920e138deba4d1bb47615582 (patch)
tree5b3977b9c637a5753f326dfdbe5489640b8d7887 /OpenSim
parentAdd request verb and url to error messages in WebUtil that lack this. (diff)
downloadopensim-SC_OLD-b0cbf16c19495814920e138deba4d1bb47615582.zip
opensim-SC_OLD-b0cbf16c19495814920e138deba4d1bb47615582.tar.gz
opensim-SC_OLD-b0cbf16c19495814920e138deba4d1bb47615582.tar.bz2
opensim-SC_OLD-b0cbf16c19495814920e138deba4d1bb47615582.tar.xz
minor: Add region name to dropped inbound packet message
Diffstat (limited to 'OpenSim')
-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