aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/OpenSimMain.cs
diff options
context:
space:
mode:
authorMW2007-04-26 17:50:25 +0000
committerMW2007-04-26 17:50:25 +0000
commit14a4ff308190af61783f1c4c686bcfc3dfa07a4f (patch)
tree70e9c899bfcd1e04399771ff25a89bebdf866867 /OpenSim.RegionServer/OpenSimMain.cs
parentAt last: avatar-template.dat is no more (diff)
downloadopensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.zip
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.gz
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.bz2
opensim-SC_OLD-14a4ff308190af61783f1c4c686bcfc3dfa07a4f.tar.xz
added just what opensim needs...yet another command line option: -noverbose . cut down on the system console output (should really be stopping it all but not all output is going through OpenSim.Framework.Console)
Diffstat (limited to '')
-rw-r--r--OpenSim.RegionServer/OpenSimMain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim.RegionServer/OpenSimMain.cs b/OpenSim.RegionServer/OpenSimMain.cs
index 0ced749..4375f74 100644
--- a/OpenSim.RegionServer/OpenSimMain.cs
+++ b/OpenSim.RegionServer/OpenSimMain.cs
@@ -90,14 +90,14 @@ namespace OpenSim
90 90
91 protected ConsoleBase m_console; 91 protected ConsoleBase m_console;
92 92
93 public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile) 93 public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool verbose)
94 { 94 {
95 this.configFileSetup = useConfigFile; 95 this.configFileSetup = useConfigFile;
96 m_sandbox = sandBoxMode; 96 m_sandbox = sandBoxMode;
97 m_loginserver = startLoginServer; 97 m_loginserver = startLoginServer;
98 m_physicsEngine = physicsEngine; 98 m_physicsEngine = physicsEngine;
99 99
100 m_console = new ConsoleBase("region-console.log", "Region", this); 100 m_console = new ConsoleBase("region-console.log", "Region", this, verbose);
101 OpenSim.Framework.Console.MainConsole.Instance = m_console; 101 OpenSim.Framework.Console.MainConsole.Instance = m_console;
102 } 102 }
103 103