mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 10:46:00 +08:00
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:
@@ -66,9 +66,14 @@ namespace OpenSim.Framework.Console
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void Output(string text, string level)
|
||||
{
|
||||
Output(text);
|
||||
}
|
||||
|
||||
public virtual void Output(string text)
|
||||
{
|
||||
System.Console.WriteLine(text);
|
||||
System.Console.Write(text);
|
||||
}
|
||||
|
||||
public string CmdPrompt(string p)
|
||||
|
||||
Reference in New Issue
Block a user