aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/ConsoleBase.cs
diff options
context:
space:
mode:
authormbowman2010-01-19 15:50:30 -0800
committerMelanie2010-01-20 00:16:08 +0000
commitc211a120a5045c4b1ccaac7bfe7db13f75804cc3 (patch)
treeb493a52f69ef42bb9e52821c67400ee5e95a8228 /OpenSim/Framework/Console/ConsoleBase.cs
parentComment the asset deletion handler. It can be abused and is not currently (diff)
downloadopensim-SC_OLD-c211a120a5045c4b1ccaac7bfe7db13f75804cc3.zip
opensim-SC_OLD-c211a120a5045c4b1ccaac7bfe7db13f75804cc3.tar.gz
opensim-SC_OLD-c211a120a5045c4b1ccaac7bfe7db13f75804cc3.tar.bz2
opensim-SC_OLD-c211a120a5045c4b1ccaac7bfe7db13f75804cc3.tar.xz
Console output no longer requires loglevel to be set to info; you can run the simulator with log level WARN or ERROR and see the output of console commands
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to '')
-rwxr-xr-x[-rw-r--r--]OpenSim/Framework/Console/ConsoleBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs
index 0a51266..b70d1db 100644..100755
--- a/OpenSim/Framework/Console/ConsoleBase.cs
+++ b/OpenSim/Framework/Console/ConsoleBase.cs
@@ -73,7 +73,7 @@ namespace OpenSim.Framework.Console
73 73
74 public virtual void Output(string text) 74 public virtual void Output(string text)
75 { 75 {
76 System.Console.Write(text); 76 System.Console.WriteLine(text);
77 } 77 }
78 78
79 public string CmdPrompt(string p) 79 public string CmdPrompt(string p)