diff options
author | UbitUmarov | 2019-10-22 12:23:19 +0100 |
---|---|---|
committer | UbitUmarov | 2019-10-22 12:23:19 +0100 |
commit | b98ad6c53c484aa2744c5040c9f29c475c3d4f72 (patch) | |
tree | 2ed849e6441381b48a45c87b0e2df8fe9c80a7af /OpenSim/Framework/Monitoring/StatsLogger.cs | |
parent | missing file (diff) | |
download | opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.zip opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.gz opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.bz2 opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.xz |
remove some useless NULL arguments
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Framework/Monitoring/StatsLogger.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Monitoring/StatsLogger.cs b/OpenSim/Framework/Monitoring/StatsLogger.cs index 4369b36..e87c188 100755 --- a/OpenSim/Framework/Monitoring/StatsLogger.cs +++ b/OpenSim/Framework/Monitoring/StatsLogger.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim.Framework.Monitoring | |||
79 | if (cmd[2] == "start") | 79 | if (cmd[2] == "start") |
80 | { | 80 | { |
81 | Start(); | 81 | Start(); |
82 | con.Output("Now recording all stats to file every {0}ms", null, m_statsLogIntervalMs); | 82 | con.Output("Now recording all stats to file every {0}ms", m_statsLogIntervalMs); |
83 | } | 83 | } |
84 | else if (cmd[2] == "stop") | 84 | else if (cmd[2] == "stop") |
85 | { | 85 | { |
@@ -106,7 +106,7 @@ namespace OpenSim.Framework.Monitoring | |||
106 | sw.WriteLine(line); | 106 | sw.WriteLine(line); |
107 | } | 107 | } |
108 | 108 | ||
109 | MainConsole.Instance.Output("Stats saved to file {0}", null, path); | 109 | MainConsole.Instance.Output("Stats saved to file {0}", path); |
110 | } | 110 | } |
111 | 111 | ||
112 | public static void Start() | 112 | public static void Start() |