mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
remove some useless NULL arguments
This commit is contained in:
@@ -492,7 +492,7 @@ namespace OpenSim.Framework.Servers
|
||||
|
||||
if (!int.TryParse(rawLevel, out newLevel))
|
||||
{
|
||||
MainConsole.Instance.Output("{0} is not a valid debug level", null, rawLevel);
|
||||
MainConsole.Instance.Output("{0} is not a valid debug level", rawLevel);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -503,7 +503,7 @@ namespace OpenSim.Framework.Servers
|
||||
}
|
||||
|
||||
Util.LogThreadPool = newLevel;
|
||||
MainConsole.Instance.Output("LogThreadPool set to {0}", null, newLevel);
|
||||
MainConsole.Instance.Output("LogThreadPool set to {0}", newLevel);
|
||||
}
|
||||
|
||||
private void HandleForceGc(string module, string[] args)
|
||||
@@ -991,9 +991,9 @@ namespace OpenSim.Framework.Servers
|
||||
}
|
||||
|
||||
if (Watchdog.AbortThread(threadId))
|
||||
MainConsole.Instance.Output("Aborted thread with id {0}", null, threadId);
|
||||
MainConsole.Instance.Output("Aborted thread with id {0}", threadId);
|
||||
else
|
||||
MainConsole.Instance.Output("ERROR - Thread with id {0} not found in managed threads", null, threadId);
|
||||
MainConsole.Instance.Output("ERROR - Thread with id {0} not found in managed threads", threadId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -1020,7 +1020,7 @@ namespace OpenSim.Framework.Servers
|
||||
protected void Notice(string format, params object[] components)
|
||||
{
|
||||
if (m_console != null)
|
||||
m_console.Output(format, null, components);
|
||||
m_console.Output(format, components);
|
||||
}
|
||||
|
||||
public virtual void Shutdown()
|
||||
|
||||
Reference in New Issue
Block a user