diff options
author | Justin Clarke Casey | 2008-10-28 15:46:30 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-28 15:46:30 +0000 |
commit | baa29fcbff05c37a1a9192999bc55cee81cfe511 (patch) | |
tree | 466fc4d4f09d8a681115bb2acbdee13ba0fad5a5 /OpenSim/Region/Environment/Scenes/ScenePresence.cs | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=2482 (diff) | |
download | opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.zip opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.gz opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.bz2 opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.xz |
* minor: Doc and log message tidy up
* reinstate debug level log message indicating when a child agent is made a root for future debugging purposes
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/ScenePresence.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 3313524..ccc4be7 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs | |||
@@ -715,9 +715,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
715 | ava.TryGetAvatarAppearance(m_uuid, out m_appearance); | 715 | ava.TryGetAvatarAppearance(m_uuid, out m_appearance); |
716 | } | 716 | } |
717 | 717 | ||
718 | // m_log.DebugFormat( | 718 | m_log.DebugFormat( |
719 | // "[SCENE PRESENCE]: Upgrading child agent {0}, {1} to a root agent in {2} at pos {3}", | 719 | "[SCENE]: Upgrading child to root agent for {0} in {1}", |
720 | // Name, UUID, m_scene.RegionInfo.RegionName, pos); | 720 | Name, m_scene.RegionInfo.RegionName); |
721 | 721 | ||
722 | if (pos.X < 0 || pos.X > Constants.RegionSize || pos.Y < 0 || pos.Y > Constants.RegionSize || pos.Z < 0) | 722 | if (pos.X < 0 || pos.X > Constants.RegionSize || pos.Y < 0 || pos.Y > Constants.RegionSize || pos.Z < 0) |
723 | { | 723 | { |