diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 36d5e51058..eee2300774 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -352,13 +352,13 @@ namespace OpenSim
m_moduleLoader.InitialiseSharedModules(scene);
// Use this in the future, the line above will be deprecated soon
- m_log.Info("[REGIONMODULE]: Loading Region's modules (new style)");
+ m_log.Info("[REGIONMODULES]: Loading Region's modules (new style)");
IRegionModulesController controller;
if (ApplicationRegistry.TryGet(out controller))
{
controller.AddRegionToModules(scene);
}
- else m_log.Error("[REGIONMODULE]: The new RegionModulesController is missing...");
+ else m_log.Error("[REGIONMODULES]: The new RegionModulesController is missing...");
scene.SetModuleInterfaces();
diff --git a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
index 6da41db45a..9bcda74088 100644
--- a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
+++ b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
@@ -34,6 +34,15 @@ using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.Examples.SimpleModule
{
+ ///
+ /// Example region module.
+ ///
+ ///
+ /// This is an old and unmaintained region module which uses the old style module interface. It is not loaded into
+ /// OpenSim by default. If you want to try enabling it, look in the bin folder of this project.
+ /// Please see the README.txt in this project on the filesystem for some more information.
+ /// Nonetheless, it may contain some useful example code so has been left here for now.
+ ///
public class RegionModule : IRegionModule
{
#region IRegionModule Members