From d520cd3263a804492c2659e50113ef7f110ca21f Mon Sep 17 00:00:00 2001 From: Jim Radford Date: Sun, 10 May 2009 09:13:03 +0000 Subject: [PATCH] LIBOMV-530 Updates TestClient regioninfo command to display additional information included in previous commit. git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2739 52acb1d6-8a22-11de-b505-999d5b087335 --- .../TestClient/Commands/Stats/RegionInfoCommand.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Programs/examples/TestClient/Commands/Stats/RegionInfoCommand.cs b/Programs/examples/TestClient/Commands/Stats/RegionInfoCommand.cs index 16df2e7d..1184f10e 100644 --- a/Programs/examples/TestClient/Commands/Stats/RegionInfoCommand.cs +++ b/Programs/examples/TestClient/Commands/Stats/RegionInfoCommand.cs @@ -44,6 +44,14 @@ namespace OpenMetaverse.TestClient output.AppendLine(Client.Network.CurrentSim.TerrainDetail3.ToString()); output.Append("Water Height: "); output.AppendLine(Client.Network.CurrentSim.WaterHeight.ToString()); + output.Append("Datacenter:"); + output.AppendLine(Client.Network.CurrentSim.ColoLocation); + output.Append("CPU Ratio:"); + output.AppendLine(Client.Network.CurrentSim.CPURatio.ToString()); + output.Append("CPU Class:"); + output.AppendLine(Client.Network.CurrentSim.CPUClass.ToString()); + output.Append("Region SKU/Type:"); + output.AppendLine(Client.Network.CurrentSim.ProductSku + " " + Client.Network.CurrentSim.ProductName); return output.ToString(); }