diff options
author | Justin Clark-Casey (justincc) | 2014-03-19 00:29:36 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-03-19 00:29:36 +0000 |
commit | e6080a38c5d91f84b123fe510f4a7fcb155de8bf (patch) | |
tree | a440ea4737e2d3272c2d9c5b01bdadbfbd064221 | |
parent | Allow a snapshot of stats to be dumped to a file with a "stats save" command (diff) | |
download | opensim-SC_OLD-e6080a38c5d91f84b123fe510f4a7fcb155de8bf.zip opensim-SC_OLD-e6080a38c5d91f84b123fe510f4a7fcb155de8bf.tar.gz opensim-SC_OLD-e6080a38c5d91f84b123fe510f4a7fcb155de8bf.tar.bz2 opensim-SC_OLD-e6080a38c5d91f84b123fe510f4a7fcb155de8bf.tar.xz |
Rename "debug stats record" command to "stats record" for consistency. Move from debug to general command category
-rw-r--r-- | OpenSim/Framework/Monitoring/StatsLogger.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Monitoring/StatsLogger.cs b/OpenSim/Framework/Monitoring/StatsLogger.cs index 5822794..f23107c 100644 --- a/OpenSim/Framework/Monitoring/StatsLogger.cs +++ b/OpenSim/Framework/Monitoring/StatsLogger.cs | |||
@@ -48,10 +48,10 @@ namespace OpenSim.Framework.Monitoring | |||
48 | public static void RegisterConsoleCommands(ICommandConsole console) | 48 | public static void RegisterConsoleCommands(ICommandConsole console) |
49 | { | 49 | { |
50 | console.Commands.AddCommand( | 50 | console.Commands.AddCommand( |
51 | "Debug", | 51 | "General", |
52 | false, | 52 | false, |
53 | "debug stats record", | 53 | "stats record", |
54 | "debug stats record start|stop", | 54 | "stats record start|stop", |
55 | "Control whether stats are being regularly recorded to a separate file.", | 55 | "Control whether stats are being regularly recorded to a separate file.", |
56 | "For debug purposes. Experimental.", | 56 | "For debug purposes. Experimental.", |
57 | HandleStatsRecordCommand); | 57 | HandleStatsRecordCommand); |