aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-06-10 23:47:33 +0000
committerJustin Clarke Casey2008-06-10 23:47:33 +0000
commitc2054d225e0e3f55d915456b0ca36e3eced10e5b (patch)
tree5f41ae2c72d750018e8f727f7120373224d9c6d1 /OpenSim/Framework/Servers
parent* minor: Report cache figures in rounded up KB instead of with decimal places... (diff)
downloadopensim-SC_OLD-c2054d225e0e3f55d915456b0ca36e3eced10e5b.zip
opensim-SC_OLD-c2054d225e0e3f55d915456b0ca36e3eced10e5b.tar.gz
opensim-SC_OLD-c2054d225e0e3f55d915456b0ca36e3eced10e5b.tar.bz2
opensim-SC_OLD-c2054d225e0e3f55d915456b0ca36e3eced10e5b.tar.xz
* minor: Reduce statistic log snapshots to every 20 minutes to get more information
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r--OpenSim/Framework/Servers/BaseOpenSimServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
index 852e1b1..f9d1a94 100644
--- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs
+++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
@@ -46,7 +46,7 @@ namespace OpenSim.Framework.Servers
46 /// This will control a periodic log printout of the current 'show stats' (if they are active) for this 46 /// This will control a periodic log printout of the current 'show stats' (if they are active) for this
47 /// server. 47 /// server.
48 /// </summary> 48 /// </summary>
49 private Timer m_periodicLogStatsTimer = new Timer(60 * 60 * 1000); 49 private Timer m_periodicLogStatsTimer = new Timer(20 * 60 * 1000);
50 50
51 protected ConsoleBase m_console; 51 protected ConsoleBase m_console;
52 52