aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs18
1 files changed, 9 insertions, 9 deletions
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
129 m_console.Commands.AddCommand( 129 m_console.Commands.AddCommand(
130 "Debug", 130 "Debug",
131 false, 131 false,
132 "debug lludp throttle log", 132 "debug lludp throttles log",
133 "debug lludp throttle log <level> [<avatar-first-name> <avatar-last-name>]", 133 "debug lludp throttles log <level> [<avatar-first-name> <avatar-last-name>]",
134 "Change debug logging level for throttles.", 134 "Change debug logging level for throttles.",
135 "If level >= 0 then throttle debug logging is performed.\n" 135 "If level >= 0 then throttle debug logging is performed.\n"
136 + "If level <= 0 then no throttle debug logging is performed.", 136 + "If level <= 0 then no throttle debug logging is performed.",
@@ -139,16 +139,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP
139 m_console.Commands.AddCommand( 139 m_console.Commands.AddCommand(
140 "Debug", 140 "Debug",
141 false, 141 false,
142 "debug lludp throttle get", 142 "debug lludp throttles get",
143 "debug lludp throttle get [<avatar-first-name> <avatar-last-name>]", 143 "debug lludp throttles get [<avatar-first-name> <avatar-last-name>]",
144 "Return debug settings for throttles.", 144 "Return debug settings for throttles.",
145 HandleThrottleGetCommand); 145 HandleThrottleGetCommand);
146 146
147 m_console.Commands.AddCommand( 147 m_console.Commands.AddCommand(
148 "Debug", 148 "Debug",
149 false, 149 false,
150 "debug lludp throttle set", 150 "debug lludp throttles set",
151 "debug lludp throttle set <param> <value> [<avatar-first-name> <avatar-last-name>]", 151 "debug lludp throttles set <param> <value> [<avatar-first-name> <avatar-last-name>]",
152 "Set a throttle parameter for the given client.", 152 "Set a throttle parameter for the given client.",
153 "Only current setting is 'adaptive' which must be 'true' or 'false'", 153 "Only current setting is 'adaptive' which must be 'true' or 'false'",
154 HandleThrottleSetCommand); 154 HandleThrottleSetCommand);
@@ -279,7 +279,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
279 if (!all && !one) 279 if (!all && !one)
280 { 280 {
281 MainConsole.Instance.OutputFormat( 281 MainConsole.Instance.OutputFormat(
282 "Usage: debug lludp throttle log <level> [<avatar-first-name> <avatar-last-name>]"); 282 "Usage: debug lludp throttles log <level> [<avatar-first-name> <avatar-last-name>]");
283 return; 283 return;
284 } 284 }
285 285
@@ -320,7 +320,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
320 if (!all && !one) 320 if (!all && !one)
321 { 321 {
322 MainConsole.Instance.OutputFormat( 322 MainConsole.Instance.OutputFormat(
323 "Usage: debug lludp throttle set <param> <value> [<avatar-first-name> <avatar-last-name>]"); 323 "Usage: debug lludp throttles set <param> <value> [<avatar-first-name> <avatar-last-name>]");
324 return; 324 return;
325 } 325 }
326 326
@@ -370,7 +370,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
370 if (!all && !one) 370 if (!all && !one)
371 { 371 {
372 MainConsole.Instance.OutputFormat( 372 MainConsole.Instance.OutputFormat(
373 "Usage: debug lludp throttle get [<avatar-first-name> <avatar-last-name>]"); 373 "Usage: debug lludp throttles get [<avatar-first-name> <avatar-last-name>]");
374 return; 374 return;
375 } 375 }
376 376