fix localconsole so viewer one can display things

master
UbitUmarov 2020-04-30 00:47:53 +01:00
parent 52f50d2035
commit 715c7a4825
2 changed files with 6 additions and 1 deletions

View File

@ -84,7 +84,7 @@ namespace OpenSim.Framework.Console
{ {
} }
public void Output(string format) public virtual void Output(string format)
{ {
System.Console.WriteLine(format); System.Console.WriteLine(format);
} }

View File

@ -389,6 +389,11 @@ namespace OpenSim.Framework.Console
System.Console.WriteLine(); System.Console.WriteLine();
} }
public override void Output(string format)
{
Output(format, null);
}
public override void Output(string format, params object[] components) public override void Output(string format, params object[] components)
{ {
string level = null; string level = null;