aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 6f2dd78..a6f9250 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3547,8 +3547,8 @@ namespace OpenSim.Region.Framework.Scenes
3547 if (!AuthorizationService.IsAuthorizedForRegion( 3547 if (!AuthorizationService.IsAuthorizedForRegion(
3548 agent.AgentID.ToString(), agent.firstname, agent.lastname, RegionInfo.RegionID.ToString(), out reason)) 3548 agent.AgentID.ToString(), agent.firstname, agent.lastname, RegionInfo.RegionID.ToString(), out reason))
3549 { 3549 {
3550 m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because the user does not have access to the region", 3550 m_log.WarnFormat("[CONNECTION BEGIN]: Denied access to: {0} ({1} {2}) at {3} because {4}",
3551 agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName); 3551 agent.AgentID, agent.firstname, agent.lastname, RegionInfo.RegionName, reason);
3552 3552
3553 return false; 3553 return false;
3554 } 3554 }