From b98ad6c53c484aa2744c5040c9f29c475c3d4f72 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 22 Oct 2019 12:23:19 +0100 Subject: remove some useless NULL arguments --- OpenSim/Framework/Servers/ServerBase.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Framework/Servers/ServerBase.cs') diff --git a/OpenSim/Framework/Servers/ServerBase.cs b/OpenSim/Framework/Servers/ServerBase.cs index 78341d4..8545012 100755 --- a/OpenSim/Framework/Servers/ServerBase.cs +++ b/OpenSim/Framework/Servers/ServerBase.cs @@ -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); } /// @@ -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() -- cgit v1.1