diff options
author | Marck | 2010-08-10 22:39:03 +0200 |
---|---|---|
committer | Diva Canto | 2010-08-11 20:47:27 -0700 |
commit | e1fb6ba437157532d6430d983927ee7e2ab21e1d (patch) | |
tree | 8457e891d901a180b15806a27b745c24dde793f0 | |
parent | minor: change "no [GridInfo] config" warning to refer to "configuration files... (diff) | |
download | opensim-SC_OLD-e1fb6ba437157532d6430d983927ee7e2ab21e1d.zip opensim-SC_OLD-e1fb6ba437157532d6430d983927ee7e2ab21e1d.tar.gz opensim-SC_OLD-e1fb6ba437157532d6430d983927ee7e2ab21e1d.tar.bz2 opensim-SC_OLD-e1fb6ba437157532d6430d983927ee7e2ab21e1d.tar.xz |
Prettify console output for long avatar names.
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 501d47f..c541249 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -418,7 +418,7 @@ namespace OpenSim | |||
418 | { | 418 | { |
419 | MainConsole.Instance.Output( | 419 | MainConsole.Instance.Output( |
420 | String.Format( | 420 | String.Format( |
421 | "Kicking user: {0,-16}{1,-16}{2,-37} in region: {3,-16}", | 421 | "Kicking user: {0,-16} {1,-16} {2,-37} in region: {3,-16}", |
422 | presence.Firstname, presence.Lastname, presence.UUID, regionInfo.RegionName)); | 422 | presence.Firstname, presence.Lastname, presence.UUID, regionInfo.RegionName)); |
423 | 423 | ||
424 | // kick client... | 424 | // kick client... |
@@ -861,7 +861,7 @@ namespace OpenSim | |||
861 | MainConsole.Instance.Output(String.Format("\nAgents connected: {0}\n", agents.Count)); | 861 | MainConsole.Instance.Output(String.Format("\nAgents connected: {0}\n", agents.Count)); |
862 | 862 | ||
863 | MainConsole.Instance.Output( | 863 | MainConsole.Instance.Output( |
864 | String.Format("{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}{5,-30}", "Firstname", "Lastname", | 864 | String.Format("{0,-16} {1,-16} {2,-37} {3,-11} {4,-16} {5,-30}", "Firstname", "Lastname", |
865 | "Agent ID", "Root/Child", "Region", "Position")); | 865 | "Agent ID", "Root/Child", "Region", "Position")); |
866 | 866 | ||
867 | foreach (ScenePresence presence in agents) | 867 | foreach (ScenePresence presence in agents) |
@@ -880,7 +880,7 @@ namespace OpenSim | |||
880 | 880 | ||
881 | MainConsole.Instance.Output( | 881 | MainConsole.Instance.Output( |
882 | String.Format( | 882 | String.Format( |
883 | "{0,-16}{1,-16}{2,-37}{3,-11}{4,-16}{5,-30}", | 883 | "{0,-16} {1,-16} {2,-37} {3,-11} {4,-16} {5,-30}", |
884 | presence.Firstname, | 884 | presence.Firstname, |
885 | presence.Lastname, | 885 | presence.Lastname, |
886 | presence.UUID, | 886 | presence.UUID, |