From 5c13980eb726762daa597c5bc3739f65fbabf275 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 7 Oct 2014 01:44:36 +0100 Subject: Change "debug lludp throttle *" commands to "debug lludp throttles" for consistency (and because I keep typing throttles). This will still work with "debug lludp throttle" anyway. --- .../ClientStack/Linden/UDP/LLUDPServerCommands.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs') diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs index 20ae188..59c2042 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs @@ -129,8 +129,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle log", - "debug lludp throttle log [ ]", + "debug lludp throttles log", + "debug lludp throttles log [ ]", "Change debug logging level for throttles.", "If level >= 0 then throttle debug logging is performed.\n" + "If level <= 0 then no throttle debug logging is performed.", @@ -139,16 +139,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle get", - "debug lludp throttle get [ ]", + "debug lludp throttles get", + "debug lludp throttles get [ ]", "Return debug settings for throttles.", HandleThrottleGetCommand); m_console.Commands.AddCommand( "Debug", false, - "debug lludp throttle set", - "debug lludp throttle set [ ]", + "debug lludp throttles set", + "debug lludp throttles set [ ]", "Set a throttle parameter for the given client.", "Only current setting is 'adaptive' which must be 'true' or 'false'", HandleThrottleSetCommand); @@ -279,7 +279,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle log [ ]"); + "Usage: debug lludp throttles log [ ]"); return; } @@ -320,7 +320,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle set [ ]"); + "Usage: debug lludp throttles set [ ]"); return; } @@ -370,7 +370,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (!all && !one) { MainConsole.Instance.OutputFormat( - "Usage: debug lludp throttle get [ ]"); + "Usage: debug lludp throttles get [ ]"); return; } -- cgit v1.1