diff options
author | Justin Clark-Casey (justincc) | 2012-04-26 16:10:24 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-04-26 16:10:24 +0100 |
commit | f49912f92abfae79ba00da74fc7665548266f7cd (patch) | |
tree | ebc79138e0503d1f6fa627c2638b6c03cb34b65e | |
parent | minor: Add region name to dropped inbound packet message (diff) | |
download | opensim-SC_OLD-f49912f92abfae79ba00da74fc7665548266f7cd.zip opensim-SC_OLD-f49912f92abfae79ba00da74fc7665548266f7cd.tar.gz opensim-SC_OLD-f49912f92abfae79ba00da74fc7665548266f7cd.tar.bz2 opensim-SC_OLD-f49912f92abfae79ba00da74fc7665548266f7cd.tar.xz |
minor: Add more detail to unauthorized caps client message
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | 5 |
1 files changed, 4 insertions, 1 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 | ||