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/ConsolePluginCommand.cs Normal file → Executable file
View File

@@ -124,7 +124,7 @@ namespace OpenSim.Framework.Console
/// </summary>
public void ShowHelp(ConsoleBase console)
{
console.Output(String.Join(" ", m_cmdText) + " - " + m_helpText);
console.Output(String.Join(" ", m_cmdText) + " - " + m_helpText + "\n");
}
/// <summary>