mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
make Console Output(..) compatible with rest of code, again
This commit is contained in:
@@ -58,7 +58,12 @@ namespace OpenSim.Framework.Console
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void Output(string format, string level = null, params object[] components)
|
||||
public void Output(string format, params object[] components)
|
||||
{
|
||||
Output(format, null, components);
|
||||
}
|
||||
|
||||
public virtual void Output(string format, string level, params object[] components)
|
||||
{
|
||||
System.Console.WriteLine(format, components);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user