diff options
author | Justin Clarke Casey | 2009-02-09 18:11:09 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-09 18:11:09 +0000 |
commit | d1d93fae6cc80a51f51cbd6d036505e2f333982a (patch) | |
tree | 2f726b649ff4be5dd8ce3e32049b71760895768e /OpenSim/Region/Application/OpenSim.cs | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=3080 (diff) | |
download | opensim-SC_OLD-d1d93fae6cc80a51f51cbd6d036505e2f333982a.zip opensim-SC_OLD-d1d93fae6cc80a51f51cbd6d036505e2f333982a.tar.gz opensim-SC_OLD-d1d93fae6cc80a51f51cbd6d036505e2f333982a.tar.bz2 opensim-SC_OLD-d1d93fae6cc80a51f51cbd6d036505e2f333982a.tar.xz |
* Restore show information for the OpenSim region server (version, info, threads, etc.)
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 4d3dcbb..5bce225 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -479,6 +479,7 @@ namespace OpenSim | |||
479 | } | 479 | } |
480 | } | 480 | } |
481 | break; | 481 | break; |
482 | |||
482 | case "get": | 483 | case "get": |
483 | if (cmdparams.Length < 3) | 484 | if (cmdparams.Length < 3) |
484 | { | 485 | { |
@@ -501,6 +502,7 @@ namespace OpenSim | |||
501 | } | 502 | } |
502 | 503 | ||
503 | break; | 504 | break; |
505 | |||
504 | case "save": | 506 | case "save": |
505 | m_console.Notice("Saving configuration file: " + Application.iniFilePath); | 507 | m_console.Notice("Saving configuration file: " + Application.iniFilePath); |
506 | m_config.Save(Application.iniFilePath); | 508 | m_config.Save(Application.iniFilePath); |
@@ -763,6 +765,8 @@ namespace OpenSim | |||
763 | // see BaseOpenSimServer | 765 | // see BaseOpenSimServer |
764 | override public void HandleShow(string mod, string[] cmd) | 766 | override public void HandleShow(string mod, string[] cmd) |
765 | { | 767 | { |
768 | base.HandleShow(mod, cmd); | ||
769 | |||
766 | List<string> args = new List<string>(cmd); | 770 | List<string> args = new List<string>(cmd); |
767 | args.RemoveAt(0); | 771 | args.RemoveAt(0); |
768 | string[] showParams = args.ToArray(); | 772 | string[] showParams = args.ToArray(); |
@@ -835,7 +839,6 @@ namespace OpenSim | |||
835 | }); | 839 | }); |
836 | break; | 840 | break; |
837 | 841 | ||
838 | |||
839 | case "queues": | 842 | case "queues": |
840 | Notice(GetQueuesReport()); | 843 | Notice(GetQueuesReport()); |
841 | break; | 844 | break; |