From 32869aec47b9bc7f7046d24aabc3f3d957a929af Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 25 Oct 2007 15:34:43 +0000 Subject: apply http://bug.opensecondlife.org/view.php?id=512 from chillken which cleans up the verbose logic --- OpenSim/Region/Application/OpenSimMain.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Application/OpenSimMain.cs') diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index a345334..55913a8 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs @@ -74,7 +74,7 @@ namespace OpenSim protected List m_udpServers = new List(); protected List m_regionData = new List(); - private bool m_silent; + private bool m_verbose; private readonly string m_logFilename = ("region-console.log"); private bool m_permissions = false; @@ -122,7 +122,7 @@ namespace OpenSim m_networkServersInfo = new NetworkServersInfo(); m_sandbox = !m_config.Configs["Startup"].GetBoolean("gridmode", false); m_physicsEngine = m_config.Configs["Startup"].GetString("physics", "basicphysics"); - m_silent = m_config.Configs["Startup"].GetBoolean("noverbose", false); + m_verbose = m_config.Configs["Startup"].GetBoolean("verbose", true); m_permissions = m_config.Configs["Startup"].GetBoolean("serverside_object_permissions", false); m_storageDLL = m_config.Configs["Startup"].GetString("storage_plugin", "OpenSim.DataStore.NullStorage.dll"); @@ -319,7 +319,7 @@ namespace OpenSim Directory.CreateDirectory(Util.logDir()); } - return new LogBase((Path.Combine(Util.logDir(), m_logFilename)), "Region", this, m_silent); + return new LogBase((Path.Combine(Util.logDir(), m_logFilename)), "Region", this, m_verbose); } # region Setup methods -- cgit v1.1