aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTedd Hansen2008-12-05 12:59:50 +0000
committerTedd Hansen2008-12-05 12:59:50 +0000
commita20d6b4b42f3af5e23f194d784e9908323509055 (patch)
tree59fd886cc04d7a51a24180310dd9bcd2013f0e3c
parentFixed crash (configsection has to be first XML root child element stupid Micr... (diff)
downloadopensim-SC_OLD-a20d6b4b42f3af5e23f194d784e9908323509055.zip
opensim-SC_OLD-a20d6b4b42f3af5e23f194d784e9908323509055.tar.gz
opensim-SC_OLD-a20d6b4b42f3af5e23f194d784e9908323509055.tar.bz2
opensim-SC_OLD-a20d6b4b42f3af5e23f194d784e9908323509055.tar.xz
Fix: removed m_log.InfoFormat("[OPENSIM MAIN]: GC Latency Mode: {0}", GCSettings.LatencyMode.ToString());
-rw-r--r--OpenSim/Region/Application/OpenSim.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 9213c61..2b54421 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -93,7 +93,8 @@ namespace OpenSim
93 m_log.Info("===================================================================="); 93 m_log.Info("====================================================================");
94 m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (ConfigurationSettings.Standalone ? "sandbox" : "grid")); 94 m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (ConfigurationSettings.Standalone ? "sandbox" : "grid"));
95 m_log.InfoFormat("[OPENSIM MAIN]: GC Is Server GC: {0}", GCSettings.IsServerGC.ToString()); 95 m_log.InfoFormat("[OPENSIM MAIN]: GC Is Server GC: {0}", GCSettings.IsServerGC.ToString());
96 m_log.InfoFormat("[OPENSIM MAIN]: GC Latency Mode: {0}", GCSettings.LatencyMode.ToString()); 96 // http://msdn.microsoft.com/en-us/library/bb384202.aspx
97 //GCSettings.LatencyMode = GCLatencyMode.Batch;
97 m_log.InfoFormat("[OPENSIM MAIN]: GC Latency Mode: {0}", GCSettings.LatencyMode.ToString()); 98 m_log.InfoFormat("[OPENSIM MAIN]: GC Latency Mode: {0}", GCSettings.LatencyMode.ToString());
98 99
99 m_console = new ConsoleBase("Region", this); 100 m_console = new ConsoleBase("Region", this);