aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-14 18:53:56 +0000
committerJustin Clarke Casey2008-10-14 18:53:56 +0000
commit58f8c042f616c2568496aeb13428230deb854db0 (patch)
tree4956e4bba8c96504141d0f16c4944212d6d5fb47 /OpenSim/Region/Application
parent* minor: Make it clear that non-scheduled updates can happen outside of the p... (diff)
downloadopensim-SC_OLD-58f8c042f616c2568496aeb13428230deb854db0.zip
opensim-SC_OLD-58f8c042f616c2568496aeb13428230deb854db0.tar.gz
opensim-SC_OLD-58f8c042f616c2568496aeb13428230deb854db0.tar.bz2
opensim-SC_OLD-58f8c042f616c2568496aeb13428230deb854db0.tar.xz
* minor: change m_debug to m_debugPacketLevel since that's what it is
Diffstat (limited to 'OpenSim/Region/Application')
-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 }