diff options
author | Justin Clarke Casey | 2008-06-11 11:25:29 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-11 11:25:29 +0000 |
commit | f07b7615837ea87d521e38171e631a8cd7eb9b17 (patch) | |
tree | e427b6aa5065a19fbf3e19b8928bf33e9eaa7a7c /OpenSim/Framework/Servers | |
parent | Mantis 1370. Thanks lulurun for the patch (diff) | |
download | opensim-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/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/BaseOpenSimServer.cs | 2 |
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 | ||