aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain
diff options
context:
space:
mode:
authoronefang2019-06-01 01:58:47 +1000
committeronefang2019-06-01 01:58:47 +1000
commitf3b8aaa9e949e9eebd35dd61dfec49649d7f0c17 (patch)
treea7cb23e5cf348cf7846c9a10876de84639ff2355 /OpenSim/Region/CoreModules/World/Terrain
parentHave some "avatar has left" mesasge hit the INFO console. (diff)
downloadopensim-SC_OLD-f3b8aaa9e949e9eebd35dd61dfec49649d7f0c17.zip
opensim-SC_OLD-f3b8aaa9e949e9eebd35dd61dfec49649d7f0c17.tar.gz
opensim-SC_OLD-f3b8aaa9e949e9eebd35dd61dfec49649d7f0c17.tar.bz2
opensim-SC_OLD-f3b8aaa9e949e9eebd35dd61dfec49649d7f0c17.tar.xz
A little tweaking of log levels.
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain')
-rw-r--r--OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
index 65d4c4a..6df0075 100644
--- a/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
+++ b/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
@@ -644,7 +644,7 @@ namespace OpenSim.Region.CoreModules.World.Terrain
644 { 644 {
645 ITerrainLoader terLoader = (ITerrainLoader)Activator.CreateInstance(library.GetType(pluginType.ToString())); 645 ITerrainLoader terLoader = (ITerrainLoader)Activator.CreateInstance(library.GetType(pluginType.ToString()));
646 m_loaders[terLoader.FileExtension] = terLoader; 646 m_loaders[terLoader.FileExtension] = terLoader;
647 m_log.Info("L ... " + typeName); 647 m_log.Debug("L ... " + typeName);
648 } 648 }
649 } 649 }
650 catch(AmbiguousMatchException) 650 catch(AmbiguousMatchException)
@@ -660,12 +660,12 @@ namespace OpenSim.Region.CoreModules.World.Terrain
660 if (!m_plugineffects.ContainsKey(pluginName)) 660 if (!m_plugineffects.ContainsKey(pluginName))
661 { 661 {
662 m_plugineffects.Add(pluginName, effect); 662 m_plugineffects.Add(pluginName, effect);
663 m_log.Info("E ... " + pluginName); 663 m_log.Debug("E ... " + pluginName);
664 } 664 }
665 else 665 else
666 { 666 {
667 m_plugineffects[pluginName] = effect; 667 m_plugineffects[pluginName] = effect;
668 m_log.Info("E ... " + pluginName + " (Replaced)"); 668 m_log.Debug("E ... " + pluginName + " (Replaced)");
669 } 669 }
670 } 670 }
671 } 671 }