aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-12-03 23:50:09 +0000
committerJustin Clark-Casey (justincc)2010-12-03 23:50:09 +0000
commitb69c5d663339c7509767b0852b9fc50822ba94cc (patch)
treed549ca2c3dea639ff28dd0c5dd2ace9cb8cd14dd /OpenSim/Region/Application/OpenSimBase.cs
parentOnly force prim persistence before delete if the prim is the result of an unp... (diff)
downloadopensim-SC_OLD-b69c5d663339c7509767b0852b9fc50822ba94cc.zip
opensim-SC_OLD-b69c5d663339c7509767b0852b9fc50822ba94cc.tar.gz
opensim-SC_OLD-b69c5d663339c7509767b0852b9fc50822ba94cc.tar.bz2
opensim-SC_OLD-b69c5d663339c7509767b0852b9fc50822ba94cc.tar.xz
minor: change OpenSimBase log messages associated with newer module loader to make the association clear
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 74ad168..36d5e51 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -352,13 +352,13 @@ namespace OpenSim
352 m_moduleLoader.InitialiseSharedModules(scene); 352 m_moduleLoader.InitialiseSharedModules(scene);
353 353
354 // Use this in the future, the line above will be deprecated soon 354 // Use this in the future, the line above will be deprecated soon
355 m_log.Info("[MODULES]: Loading Region's modules (new style)"); 355 m_log.Info("[REGIONMODULE]: Loading Region's modules (new style)");
356 IRegionModulesController controller; 356 IRegionModulesController controller;
357 if (ApplicationRegistry.TryGet(out controller)) 357 if (ApplicationRegistry.TryGet(out controller))
358 { 358 {
359 controller.AddRegionToModules(scene); 359 controller.AddRegionToModules(scene);
360 } 360 }
361 else m_log.Error("[MODULES]: The new RegionModulesController is missing..."); 361 else m_log.Error("[REGIONMODULE]: The new RegionModulesController is missing...");
362 362
363 scene.SetModuleInterfaces(); 363 scene.SetModuleInterfaces();
364 364