* minor: Increase verbosity of "new user request denied" incoming session warning for debugging purposes

0.6.0-stable
Justin Clarke Casey 2008-06-05 01:55:45 +00:00
parent 677e2ca330
commit 7f10e5f338
1 changed files with 4 additions and 1 deletions

View File

@ -703,7 +703,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
if (!sessionInfo.Authorised)
{
//session/circuit not authorised
m_log.Info("[CLIENT]: New user request denied to " + m_userEndPoint.ToString());
m_log.WarnFormat(
"[CLIENT]: New user request denied to avatar {0} with circuit code {1} at {2}",
m_agentId, m_circuitCode, m_userEndPoint);
m_packetQueue.Close();
m_clientThread.Abort();
}