Assume White as a console color just means "default", and don't use it.
This helps reduce confusion for linux people that have white background terminals.afrisby
parent
c805b8827a
commit
2333de33f1
|
@ -244,7 +244,9 @@ namespace OpenSim.Framework.Console
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
System.Console.ForegroundColor = color;
|
if (color != ConsoleColor.White)
|
||||||
|
System.Console.ForegroundColor = color;
|
||||||
|
|
||||||
System.Console.WriteLine(format, args);
|
System.Console.WriteLine(format, args);
|
||||||
System.Console.ResetColor();
|
System.Console.ResetColor();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue