mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
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)
This commit is contained in:
@@ -90,14 +90,14 @@ namespace OpenSim
|
||||
|
||||
protected ConsoleBase m_console;
|
||||
|
||||
public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile)
|
||||
public OpenSimMain(bool sandBoxMode, bool startLoginServer, string physicsEngine, bool useConfigFile, bool verbose)
|
||||
{
|
||||
this.configFileSetup = useConfigFile;
|
||||
m_sandbox = sandBoxMode;
|
||||
m_loginserver = startLoginServer;
|
||||
m_physicsEngine = physicsEngine;
|
||||
|
||||
m_console = new ConsoleBase("region-console.log", "Region", this);
|
||||
m_console = new ConsoleBase("region-console.log", "Region", this, verbose);
|
||||
OpenSim.Framework.Console.MainConsole.Instance = m_console;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user