diff options
author | Justin Clark-Casey (justincc) | 2012-04-26 00:42:37 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-04-26 00:42:37 +0100 |
commit | e52fe03fffc908c4a3387ba77a204ec19f9ed9d4 (patch) | |
tree | 85a26778c721842b3640af8a5402434de37703f3 | |
parent | Comment out avatar move to target message for now. (diff) | |
download | opensim-SC_OLD-e52fe03fffc908c4a3387ba77a204ec19f9ed9d4.zip opensim-SC_OLD-e52fe03fffc908c4a3387ba77a204ec19f9ed9d4.tar.gz opensim-SC_OLD-e52fe03fffc908c4a3387ba77a204ec19f9ed9d4.tar.bz2 opensim-SC_OLD-e52fe03fffc908c4a3387ba77a204ec19f9ed9d4.tar.xz |
minor: Add avatar name to removing agent log message
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 7a2b2ed..a46c827 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -3217,8 +3217,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
3217 | try | 3217 | try |
3218 | { | 3218 | { |
3219 | m_log.DebugFormat( | 3219 | m_log.DebugFormat( |
3220 | "[SCENE]: Removing {0} agent {1} from region {2}", | 3220 | "[SCENE]: Removing {0} agent {1} {2} from region {2}", |
3221 | (isChildAgent ? "child" : "root"), agentID, RegionInfo.RegionName); | 3221 | (isChildAgent ? "child" : "root"), avatar.Name, agentID, RegionInfo.RegionName); |
3222 | 3222 | ||
3223 | m_sceneGraph.removeUserCount(!isChildAgent); | 3223 | m_sceneGraph.removeUserCount(!isChildAgent); |
3224 | 3224 | ||