minor: Add more detail to unauthorized caps client message

integration
Justin Clark-Casey (justincc) 2012-04-26 16:10:24 +01:00
parent b0cbf16c19
commit f49912f92a
1 changed files with 4 additions and 1 deletions

View File

@ -235,7 +235,10 @@ namespace OpenSim.Region.ClientStack.Linden
if (!m_Scene.CheckClient(m_HostCapsObj.AgentID, httpRequest.RemoteIPEndPoint))
{
m_log.DebugFormat("[CAPS]: Unauthorized CAPS client");
m_log.DebugFormat(
"[CAPS]: Unauthorized CAPS client {0} from {1}",
m_HostCapsObj.AgentID, httpRequest.RemoteIPEndPoint);
return string.Empty;
}