also override Output(string format) on remoteConsole
parent
41d7d2f2f4
commit
1e8e59e635
|
@ -190,6 +190,11 @@ namespace OpenSim.Framework.Console
|
||||||
m_Server.AddHTTPHandler("/SessionCommand/", HandleHttpSessionCommand);
|
m_Server.AddHTTPHandler("/SessionCommand/", HandleHttpSessionCommand);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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