From 2333de33f1c60ab5a15cc0b524d3487e0bd4165f Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 1 Aug 2007 20:06:40 +0000 Subject: 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. --- OpenSim/Framework/Console/LogBase.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'OpenSim') diff --git a/OpenSim/Framework/Console/LogBase.cs b/OpenSim/Framework/Console/LogBase.cs index 0aa42d1..6b6c056 100644 --- a/OpenSim/Framework/Console/LogBase.cs +++ b/OpenSim/Framework/Console/LogBase.cs @@ -244,7 +244,9 @@ namespace OpenSim.Framework.Console { try { - System.Console.ForegroundColor = color; + if (color != ConsoleColor.White) + System.Console.ForegroundColor = color; + System.Console.WriteLine(format, args); System.Console.ResetColor(); } -- cgit v1.1