diff --git a/OpenSim/Framework/LandData.cs b/OpenSim/Framework/LandData.cs
index 145ccddb44..c107143a6c 100644
--- a/OpenSim/Framework/LandData.cs
+++ b/OpenSim/Framework/LandData.cs
@@ -560,7 +560,7 @@ namespace OpenSim.Framework
}
///
- /// Number of minutes to return SceneObjectGroup that are owned by someone who doesn't own
+ /// Autoreturn number of minutes to return SceneObjectGroup that are owned by someone who doesn't own
/// the parcel and isn't set to the same 'group' as the parcel.
///
public int OtherCleanTime {
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index a62d6d7e0d..f0acc38820 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1521,8 +1521,11 @@ namespace OpenSim.Region.Framework.Scenes
}
///
- /// Return object to avatar Message
+ /// Tell an agent that their object has been returned.
///
+ ///
+ /// The actual return is handled by the caller.
+ ///
/// Avatar Unique Id
/// Name of object returned
/// Location of object returned
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index f17fb28f8d..a7107f0184 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -1313,8 +1313,10 @@ namespace OpenSim.Region.Framework.Scenes
parcel.LandData.OtherCleanTime)
{
DetachFromBackup();
- m_log.InfoFormat("[SCENE]: Returning object {0} due to parcel auto return", RootPart.UUID.ToString());
- m_scene.AddReturn(OwnerID, Name, AbsolutePosition, "parcel auto return");
+ m_log.DebugFormat(
+ "[SCENE OBJECT GROUP]: Returning object {0} due to parcel autoreturn",
+ RootPart.UUID);
+ m_scene.AddReturn(OwnerID, Name, AbsolutePosition, "parcel autoreturn");
m_scene.DeRezObjects(null, new List() { RootPart.LocalId }, UUID.Zero,
DeRezAction.Return, UUID.Zero);