mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
fix localconsole so viewer one can display things
This commit is contained in:
@@ -84,7 +84,7 @@ namespace OpenSim.Framework.Console
|
||||
{
|
||||
}
|
||||
|
||||
public void Output(string format)
|
||||
public virtual void Output(string format)
|
||||
{
|
||||
System.Console.WriteLine(format);
|
||||
}
|
||||
|
||||
@@ -389,6 +389,11 @@ namespace OpenSim.Framework.Console
|
||||
System.Console.WriteLine();
|
||||
}
|
||||
|
||||
public override void Output(string format)
|
||||
{
|
||||
Output(format, null);
|
||||
}
|
||||
|
||||
public override void Output(string format, params object[] components)
|
||||
{
|
||||
string level = null;
|
||||
|
||||
Reference in New Issue
Block a user