Move the color console logic from the appender into the local console, since

that is the only one that can use it. Change appender output to always go
through the console output functions.
This commit is contained in:
Melanie Thielker
2009-05-20 14:40:50 +00:00
parent 4065ebff15
commit 3ae9bb6d83
4 changed files with 101 additions and 77 deletions

View File

@@ -60,8 +60,9 @@ namespace OpenSim.Framework.Console
m_Server = server;
}
public override void Output(string text)
public override void Output(string text, string level)
{
System.Console.Write(text);
}
public override string ReadLine(string p, bool isCommand, bool e)