aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-06-11 11:25:29 +0000
committerJustin Clarke Casey2008-06-11 11:25:29 +0000
commitf07b7615837ea87d521e38171e631a8cd7eb9b17 (patch)
treee427b6aa5065a19fbf3e19b8928bf33e9eaa7a7c /OpenSim/Framework
parentMantis 1370. Thanks lulurun for the patch (diff)
downloadopensim-SC_OLD-f07b7615837ea87d521e38171e631a8cd7eb9b17.zip
opensim-SC_OLD-f07b7615837ea87d521e38171e631a8cd7eb9b17.tar.gz
opensim-SC_OLD-f07b7615837ea87d521e38171e631a8cd7eb9b17.tar.bz2
opensim-SC_OLD-f07b7615837ea87d521e38171e631a8cd7eb9b17.tar.xz
* Drop periodic stats logging back down to 60 minutes to reduce console spam.
* Please feel free to comment if the periodic logging is causing you problems in some way - I'm loathe to add yet another switch to OpenSim.ini but will if it proves necessary
Diffstat (limited to 'OpenSim/Framework')
-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 bdd0e36..a273676 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(20 * 60 * 1000); 49 private Timer m_periodicLogStatsTimer = new Timer(60 * 60 * 1000);
50 50
51 protected ConsoleBase m_console; 51 protected ConsoleBase m_console;
52 52