diff options
author | Justin Clarke Casey | 2008-06-05 01:55:45 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-05 01:55:45 +0000 |
commit | 7f10e5f338f5082743d49c8ab5680155de1da1af (patch) | |
tree | 8943b4bdfa8d2362155ffdbf851a704662fb03a1 /OpenSim | |
parent | * refactor: rename now inaccurate textureUuids to assetUuids (diff) | |
download | opensim-SC_OLD-7f10e5f338f5082743d49c8ab5680155de1da1af.zip opensim-SC_OLD-7f10e5f338f5082743d49c8ab5680155de1da1af.tar.gz opensim-SC_OLD-7f10e5f338f5082743d49c8ab5680155de1da1af.tar.bz2 opensim-SC_OLD-7f10e5f338f5082743d49c8ab5680155de1da1af.tar.xz |
* minor: Increase verbosity of "new user request denied" incoming session warning for debugging purposes
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 1044d8f..9a211b4 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -703,7 +703,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
703 | if (!sessionInfo.Authorised) | 703 | if (!sessionInfo.Authorised) |
704 | { | 704 | { |
705 | //session/circuit not authorised | 705 | //session/circuit not authorised |
706 | m_log.Info("[CLIENT]: New user request denied to " + m_userEndPoint.ToString()); | 706 | m_log.WarnFormat( |
707 | "[CLIENT]: New user request denied to avatar {0} with circuit code {1} at {2}", | ||
708 | m_agentId, m_circuitCode, m_userEndPoint); | ||
709 | |||
707 | m_packetQueue.Close(); | 710 | m_packetQueue.Close(); |
708 | m_clientThread.Abort(); | 711 | m_clientThread.Abort(); |
709 | } | 712 | } |