aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim.RegionServer')
-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