aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs')
-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 }