aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Application/OpenSim.cs9
-rw-r--r--OpenSim/Server/Base/ServicesServerBase.cs4
2 files changed, 9 insertions, 4 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 5228e4b..82b2fd4 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -939,8 +939,8 @@ namespace OpenSim
939 m_log.Info(String.Format("\nAgents connected: {0}\n", agents.Count)); 939 m_log.Info(String.Format("\nAgents connected: {0}\n", agents.Count));
940 940
941 m_log.Info( 941 m_log.Info(
942 String.Format("{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}", "Firstname", "Lastname", 942 String.Format("{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}{5,-30}", "Firstname", "Lastname",
943 "Agent ID", "Root/Child", "Region")); 943 "Agent ID", "Root/Child", "Region", "Position"));
944 944
945 foreach (ScenePresence presence in agents) 945 foreach (ScenePresence presence in agents)
946 { 946 {
@@ -958,12 +958,13 @@ namespace OpenSim
958 958
959 m_log.Info( 959 m_log.Info(
960 String.Format( 960 String.Format(
961 "{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}", 961 "{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}{5,-30}",
962 presence.Firstname, 962 presence.Firstname,
963 presence.Lastname, 963 presence.Lastname,
964 presence.UUID, 964 presence.UUID,
965 presence.IsChildAgent ? "Child" : "Root", 965 presence.IsChildAgent ? "Child" : "Root",
966 regionName)); 966 regionName,
967 presence.AbsolutePosition.ToString()));
967 } 968 }
968 969
969 m_log.Info(String.Empty); 970 m_log.Info(String.Empty);
diff --git a/OpenSim/Server/Base/ServicesServerBase.cs b/OpenSim/Server/Base/ServicesServerBase.cs
index 1d9eb0d..63ba673 100644
--- a/OpenSim/Server/Base/ServicesServerBase.cs
+++ b/OpenSim/Server/Base/ServicesServerBase.cs
@@ -226,6 +226,10 @@ namespace OpenSim.Server.Base
226 "quit", 226 "quit",
227 "Quit the application", HandleQuit); 227 "Quit the application", HandleQuit);
228 228
229 MainConsole.Instance.Commands.AddCommand("base", false, "shutdown",
230 "shutdown",
231 "Quit the application", HandleQuit);
232
229 // Allow derived classes to perform initialization that 233 // Allow derived classes to perform initialization that
230 // needs to be done after the console has opened 234 // needs to be done after the console has opened
231 // 235 //