* 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 necessary0.6.0-stable
parent
6b77f1141d
commit
f07b761583
|
@ -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.
|
||||
/// </summary>
|
||||
private Timer m_periodicLogStatsTimer = new Timer(20 * 60 * 1000);
|
||||
private Timer m_periodicLogStatsTimer = new Timer(60 * 60 * 1000);
|
||||
|
||||
protected ConsoleBase m_console;
|
||||
|
||||
|
|
Loading…
Reference in New Issue