fix localconsole so viewer one can display things
parent
52f50d2035
commit
715c7a4825
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue