diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs index 8ec2f20..e20c24f 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | |||
@@ -235,7 +235,10 @@ namespace OpenSim.Region.ClientStack.Linden | |||
235 | 235 | ||
236 | if (!m_Scene.CheckClient(m_HostCapsObj.AgentID, httpRequest.RemoteIPEndPoint)) | 236 | if (!m_Scene.CheckClient(m_HostCapsObj.AgentID, httpRequest.RemoteIPEndPoint)) |
237 | { | 237 | { |
238 | m_log.DebugFormat("[CAPS]: Unauthorized CAPS client"); | 238 | m_log.DebugFormat( |
239 | "[CAPS]: Unauthorized CAPS client {0} from {1}", | ||
240 | m_HostCapsObj.AgentID, httpRequest.RemoteIPEndPoint); | ||
241 | |||
239 | return string.Empty; | 242 | return string.Empty; |
240 | } | 243 | } |
241 | 244 | ||
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 | ||