* Restore show information for the OpenSim region server (version, info, threads, etc.)
parent
eddcf620d8
commit
d1d93fae6c
|
@ -342,7 +342,7 @@ namespace OpenSim.Framework.Servers
|
|||
}
|
||||
|
||||
public virtual void HandleShow(string module, string[] cmd)
|
||||
{
|
||||
{
|
||||
List<string> args = new List<string>(cmd);
|
||||
|
||||
args.RemoveAt(0);
|
||||
|
|
|
@ -479,6 +479,7 @@ namespace OpenSim
|
|||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case "get":
|
||||
if (cmdparams.Length < 3)
|
||||
{
|
||||
|
@ -501,6 +502,7 @@ namespace OpenSim
|
|||
}
|
||||
|
||||
break;
|
||||
|
||||
case "save":
|
||||
m_console.Notice("Saving configuration file: " + Application.iniFilePath);
|
||||
m_config.Save(Application.iniFilePath);
|
||||
|
@ -763,6 +765,8 @@ namespace OpenSim
|
|||
// see BaseOpenSimServer
|
||||
override public void HandleShow(string mod, string[] cmd)
|
||||
{
|
||||
base.HandleShow(mod, cmd);
|
||||
|
||||
List<string> args = new List<string>(cmd);
|
||||
args.RemoveAt(0);
|
||||
string[] showParams = args.ToArray();
|
||||
|
@ -835,7 +839,6 @@ namespace OpenSim
|
|||
});
|
||||
break;
|
||||
|
||||
|
||||
case "queues":
|
||||
Notice(GetQueuesReport());
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue