aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
index b9f8305..52247ab 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
@@ -419,7 +419,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
419 { 419 {
420 if (all || (sp.Firstname == firstName && sp.Lastname == lastName)) 420 if (all || (sp.Firstname == firstName && sp.Lastname == lastName))
421 { 421 {
422 MainConsole.Instance.OutputFormat( 422 m_console.OutputFormat(
423 "Status for {0} ({1}) in {2}", 423 "Status for {0} ({1}) in {2}",
424 sp.Name, sp.IsChildAgent ? "child" : "root", m_udpServer.Scene.Name); 424 sp.Name, sp.IsChildAgent ? "child" : "root", m_udpServer.Scene.Name);
425 425
@@ -427,7 +427,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
427 427
428 ConsoleDisplayList cdl = new ConsoleDisplayList(); 428 ConsoleDisplayList cdl = new ConsoleDisplayList();
429 cdl.AddRow("Adaptive throttle", udpClient.FlowThrottle.Enabled); 429 cdl.AddRow("Adaptive throttle", udpClient.FlowThrottle.Enabled);
430 cdl.AddRow("Max throttle", string.Format("{0} kbps", udpClient.FlowThrottle.RequestedDripRate / 8 * 1000)); 430 cdl.AddRow("Max throttle", string.Format("{0} kbps", udpClient.FlowThrottle.RequestedDripRate * 8 / 1000));
431
432 m_console.Output(cdl.ToString());
431 } 433 }
432 }); 434 });
433 } 435 }