aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/LocalConsole.cs
diff options
context:
space:
mode:
authorMelanie2012-08-14 21:54:47 +0200
committerMelanie2012-08-14 21:54:47 +0200
commit195b69d1ea90a123ce1a61536dffa33276c1e76a (patch)
tree8973bc2b6bb8383cac255afc6ef16617424c6fb8 /OpenSim/Framework/Console/LocalConsole.cs
parentMerge branch 'avination' of ssh://3dhosting.de/var/git/careminster into avina... (diff)
downloadopensim-SC-195b69d1ea90a123ce1a61536dffa33276c1e76a.zip
opensim-SC-195b69d1ea90a123ce1a61536dffa33276c1e76a.tar.gz
opensim-SC-195b69d1ea90a123ce1a61536dffa33276c1e76a.tar.bz2
opensim-SC-195b69d1ea90a123ce1a61536dffa33276c1e76a.tar.xz
Allow the use of the region debug console found in recent viewers. This console
will be available to estate owners and managers. If the user using the console had god privs, they can use "set console on" and "set console off" to switch on the actual region console. This allows console access from within the viewer. The region debug console can coexist with any other main console.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Console/LocalConsole.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs
index f65813b..d41481f 100644
--- a/OpenSim/Framework/Console/LocalConsole.cs
+++ b/OpenSim/Framework/Console/LocalConsole.cs
@@ -319,6 +319,8 @@ namespace OpenSim.Framework.Console
319 319
320 public override void Output(string text, string level) 320 public override void Output(string text, string level)
321 { 321 {
322 FireOnOutput(text);
323
322 lock (m_commandLine) 324 lock (m_commandLine)
323 { 325 {
324 if (m_cursorYPosition == -1) 326 if (m_cursorYPosition == -1)
@@ -509,4 +511,4 @@ namespace OpenSim.Framework.Console
509 } 511 }
510 } 512 }
511 } 513 }
512} \ No newline at end of file 514}