* 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)
|
public virtual void HandleShow(string module, string[] cmd)
|
||||||
{
|
{
|
||||||
List<string> args = new List<string>(cmd);
|
List<string> args = new List<string>(cmd);
|
||||||
|
|
||||||
args.RemoveAt(0);
|
args.RemoveAt(0);
|
||||||
|
|
|
@ -479,6 +479,7 @@ namespace OpenSim
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "get":
|
case "get":
|
||||||
if (cmdparams.Length < 3)
|
if (cmdparams.Length < 3)
|
||||||
{
|
{
|
||||||
|
@ -501,6 +502,7 @@ namespace OpenSim
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "save":
|
case "save":
|
||||||
m_console.Notice("Saving configuration file: " + Application.iniFilePath);
|
m_console.Notice("Saving configuration file: " + Application.iniFilePath);
|
||||||
m_config.Save(Application.iniFilePath);
|
m_config.Save(Application.iniFilePath);
|
||||||
|
@ -763,6 +765,8 @@ namespace OpenSim
|
||||||
// see BaseOpenSimServer
|
// see BaseOpenSimServer
|
||||||
override public void HandleShow(string mod, string[] cmd)
|
override public void HandleShow(string mod, string[] cmd)
|
||||||
{
|
{
|
||||||
|
base.HandleShow(mod, cmd);
|
||||||
|
|
||||||
List<string> args = new List<string>(cmd);
|
List<string> args = new List<string>(cmd);
|
||||||
args.RemoveAt(0);
|
args.RemoveAt(0);
|
||||||
string[] showParams = args.ToArray();
|
string[] showParams = args.ToArray();
|
||||||
|
@ -835,7 +839,6 @@ namespace OpenSim
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
case "queues":
|
case "queues":
|
||||||
Notice(GetQueuesReport());
|
Notice(GetQueuesReport());
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue