mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
remove some useless NULL arguments
This commit is contained in:
@@ -79,7 +79,7 @@ namespace OpenSim.Framework.Monitoring
|
||||
if (cmd[2] == "start")
|
||||
{
|
||||
Start();
|
||||
con.Output("Now recording all stats to file every {0}ms", null, m_statsLogIntervalMs);
|
||||
con.Output("Now recording all stats to file every {0}ms", m_statsLogIntervalMs);
|
||||
}
|
||||
else if (cmd[2] == "stop")
|
||||
{
|
||||
@@ -106,7 +106,7 @@ namespace OpenSim.Framework.Monitoring
|
||||
sw.WriteLine(line);
|
||||
}
|
||||
|
||||
MainConsole.Instance.Output("Stats saved to file {0}", null, path);
|
||||
MainConsole.Instance.Output("Stats saved to file {0}", path);
|
||||
}
|
||||
|
||||
public static void Start()
|
||||
|
||||
Reference in New Issue
Block a user