aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index c877aad..93d56bc 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -555,11 +555,11 @@ namespace OpenSim
555 int newDebug; 555 int newDebug;
556 if (int.TryParse(args[1], out newDebug)) 556 if (int.TryParse(args[1], out newDebug))
557 { 557 {
558 m_sceneManager.SetDebugPacketOnCurrentScene(newDebug); 558 m_sceneManager.SetDebugPacketLevelOnCurrentScene(newDebug);
559 } 559 }
560 else 560 else
561 { 561 {
562 m_console.Error("packet debug should be 0..2"); 562 m_console.Error("packet debug should be 0..255");
563 } 563 }
564 m_console.Notice("New packet debug: " + newDebug.ToString()); 564 m_console.Notice("New packet debug: " + newDebug.ToString());
565 } 565 }