* Maintainence: Experimental console fix for Debian
parent
e1ab1454a4
commit
f3db36fc39
|
@ -108,9 +108,16 @@ namespace OpenSim.Framework.Console
|
||||||
Log.Flush();
|
Log.Flush();
|
||||||
if (!m_silent)
|
if (!m_silent)
|
||||||
{
|
{
|
||||||
System.Console.ForegroundColor = color;
|
try
|
||||||
System.Console.WriteLine(format, args);
|
{
|
||||||
System.Console.ResetColor();
|
System.Console.ForegroundColor = color;
|
||||||
|
System.Console.WriteLine(format, args);
|
||||||
|
System.Console.ResetColor();
|
||||||
|
} // Because mono and old debian sucks.
|
||||||
|
catch (System.ArgumentNullException)
|
||||||
|
{
|
||||||
|
System.Console.WriteLine(format, args);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue