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.cs16
1 files changed, 6 insertions, 10 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index d763d35..c41979c 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1477,8 +1477,7 @@ namespace OpenSim.Region.Environment.Scenes
1477 } 1477 }
1478 else 1478 else
1479 { 1479 {
1480 m_log.Warn( 1480 m_log.WarnFormat("[SCENE] Tried to remove non-existent scene prescence with agent ID {0} from scene ScenePresences list", agentID);
1481 String.Format("[SCENE] Tried to remove non-existent scene prescence with agent ID {0} from scene ScenePresences list", agentID));
1482 } 1481 }
1483 } 1482 }
1484 1483
@@ -1490,8 +1489,7 @@ namespace OpenSim.Region.Environment.Scenes
1490 } 1489 }
1491 else 1490 else
1492 { 1491 {
1493 m_log.Warn( 1492 m_log.WarnFormat("[SCENE] Tried to remove non-existent scene prescence with agent ID {0} from scene Entities list", agentID);
1494 String.Format("[SCENE] Tried to remove non-existent scene prescence with agent ID {0} from scene Entities list", agentID));
1495 } 1493 }
1496 } 1494 }
1497 1495
@@ -2302,21 +2300,19 @@ namespace OpenSim.Region.Environment.Scenes
2302 { 2300 {
2303 case "users": 2301 case "users":
2304 m_log.Error("Current Region: " + RegionInfo.RegionName); 2302 m_log.Error("Current Region: " + RegionInfo.RegionName);
2305 m_log.Error( 2303 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}{6,-16}", "Firstname", "Lastname",
2306 String.Format("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}{6,-16}", "Firstname", "Lastname", 2304 "Agent ID", "Session ID", "Circuit", "IP", "World");
2307 "Agent ID", "Session ID", "Circuit", "IP", "World"));
2308 2305
2309 foreach (ScenePresence scenePrescence in GetAvatars()) 2306 foreach (ScenePresence scenePrescence in GetAvatars())
2310 { 2307 {
2311 m_log.Error( 2308 m_log.ErrorFormat("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}{6,-16}",
2312 String.Format("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}{6,-16}",
2313 scenePrescence.Firstname, 2309 scenePrescence.Firstname,
2314 scenePrescence.Lastname, 2310 scenePrescence.Lastname,
2315 scenePrescence.UUID, 2311 scenePrescence.UUID,
2316 scenePrescence.ControllingClient.AgentId, 2312 scenePrescence.ControllingClient.AgentId,
2317 "Unknown", 2313 "Unknown",
2318 "Unknown", 2314 "Unknown",
2319 RegionInfo.RegionName)); 2315 RegionInfo.RegionName);
2320 } 2316 }
2321 break; 2317 break;
2322 case "modules": 2318 case "modules":