From f07b7615837ea87d521e38171e631a8cd7eb9b17 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 11 Jun 2008 11:25:29 +0000 Subject: * 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 --- OpenSim/Framework/Servers/BaseOpenSimServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 /// This will control a periodic log printout of the current 'show stats' (if they are active) for this /// server. /// - private Timer m_periodicLogStatsTimer = new Timer(20 * 60 * 1000); + private Timer m_periodicLogStatsTimer = new Timer(60 * 60 * 1000); protected ConsoleBase m_console; -- cgit v1.1