From f3b8aaa9e949e9eebd35dd61dfec49649d7f0c17 Mon Sep 17 00:00:00 2001 From: onefang Date: Sat, 1 Jun 2019 01:58:47 +1000 Subject: A little tweaking of log levels. --- OpenSim/Region/CoreModules/World/Terrain/TerrainModule.cs | 6 +++--- OpenSim/Region/CoreModules/World/Wind/WindModule.cs | 4 ++-- OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'OpenSim') 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 { ITerrainLoader terLoader = (ITerrainLoader)Activator.CreateInstance(library.GetType(pluginType.ToString())); m_loaders[terLoader.FileExtension] = terLoader; - m_log.Info("L ... " + typeName); + m_log.Debug("L ... " + typeName); } } catch(AmbiguousMatchException) @@ -660,12 +660,12 @@ namespace OpenSim.Region.CoreModules.World.Terrain if (!m_plugineffects.ContainsKey(pluginName)) { m_plugineffects.Add(pluginName, effect); - m_log.Info("E ... " + pluginName); + m_log.Debug("E ... " + pluginName); } else { m_plugineffects[pluginName] = effect; - m_log.Info("E ... " + pluginName + " (Replaced)"); + m_log.Debug("E ... " + pluginName + " (Replaced)"); } } } diff --git a/OpenSim/Region/CoreModules/World/Wind/WindModule.cs b/OpenSim/Region/CoreModules/World/Wind/WindModule.cs index a1fff62..b1eb0a5 100644 --- a/OpenSim/Region/CoreModules/World/Wind/WindModule.cs +++ b/OpenSim/Region/CoreModules/World/Wind/WindModule.cs @@ -101,7 +101,7 @@ namespace OpenSim.Region.CoreModules // Register all the Wind Model Plug-ins foreach (IWindModelPlugin windPlugin in AddinManager.GetExtensionObjects("/OpenSim/WindModule", false)) { - m_log.InfoFormat("[WIND] Found Plugin: {0}", windPlugin.Name); + m_log.DebugFormat("[WIND] Found Plugin: {0}", windPlugin.Name); m_availableWindPlugins.Add(windPlugin.Name, windPlugin); } @@ -110,7 +110,7 @@ namespace OpenSim.Region.CoreModules { m_activeWindPlugin = m_availableWindPlugins[m_dWindPluginName]; - m_log.InfoFormat("[WIND] {0} plugin found, initializing.", m_dWindPluginName); + m_log.DebugFormat("[WIND] {0} plugin found, initializing.", m_dWindPluginName); if (m_windConfig != null) { diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs index 6304778..6046e73 100644 --- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs @@ -88,7 +88,7 @@ namespace OpenSim.Region.Framework.Scenes if (neighbour != null) { - m_log.DebugFormat("{0} Region {1} successfully informed neighbour {2} at {3}-{4} that it is up", + m_log.InfoFormat("{0} Region {1} successfully informed neighbour {2} at {3}-{4} that it is up", LogHeader, m_scene.Name, neighbour.RegionName, Util.WorldToRegionLoc(x), Util.WorldToRegionLoc(y)); m_scene.EventManager.TriggerOnRegionUp(neighbour); @@ -131,7 +131,7 @@ namespace OpenSim.Region.Framework.Scenes } } - m_log.DebugFormat( + m_log.InfoFormat( "{0} Informing {1} neighbours that region {2} is up", LogHeader, onlineNeighbours.Count, m_scene.Name); -- cgit v1.1