aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index eb04f33..2ede245 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -2339,13 +2339,13 @@ namespace OpenSim.Region.Environment.Scenes
2339 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}{6,-16}", "Firstname", "Lastname", 2339 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}{6,-16}", "Firstname", "Lastname",
2340 "Agent ID", "Session ID", "Circuit", "IP", "World"); 2340 "Agent ID", "Session ID", "Circuit", "IP", "World");
2341 2341
2342 foreach (ScenePresence scenePrescence in GetAvatars()) 2342 foreach (ScenePresence scenePresence in GetAvatars())
2343 { 2343 {
2344 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}{6,-16}", 2344 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}{6,-16}",
2345 scenePrescence.Firstname, 2345 scenePresence.Firstname,
2346 scenePrescence.Lastname, 2346 scenePresence.Lastname,
2347 scenePrescence.UUID, 2347 scenePresence.UUID,
2348 scenePrescence.ControllingClient.AgentId, 2348 scenePresence.ControllingClient.AgentId,
2349 "Unknown", 2349 "Unknown",
2350 "Unknown", 2350 "Unknown",
2351 RegionInfo.RegionName); 2351 RegionInfo.RegionName);