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>
This commit is contained in:
mbowman
2010-01-19 15:50:30 -08:00
committed by Melanie
parent 2257431cba
commit c211a120a5
4 changed files with 69 additions and 64 deletions

2
OpenSim/Framework/Console/ConsoleBase.cs Normal file → Executable file
View File

@@ -73,7 +73,7 @@ namespace OpenSim.Framework.Console
public virtual void Output(string text)
{
System.Console.Write(text);
System.Console.WriteLine(text);
}
public string CmdPrompt(string p)