diff options
author | Melanie | 2019-08-20 23:28:59 +0100 |
---|---|---|
committer | Melanie | 2019-08-20 23:28:59 +0100 |
commit | 0fd17c08ae642fac17b24dfad06c61cfe5739483 (patch) | |
tree | 4871c96eab2f5b118cb09d670a3a4ba024cf1210 /OpenSim/Framework/Servers/ServerBase.cs | |
parent | change PGSQL migration (diff) | |
download | opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.zip opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.gz opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.bz2 opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.xz |
Massive console refactor. Greatly simplify interface.
Diffstat (limited to 'OpenSim/Framework/Servers/ServerBase.cs')
-rwxr-xr-x[-rw-r--r--] | OpenSim/Framework/Servers/ServerBase.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/Servers/ServerBase.cs b/OpenSim/Framework/Servers/ServerBase.cs index 858098c..78341d4 100644..100755 --- a/OpenSim/Framework/Servers/ServerBase.cs +++ b/OpenSim/Framework/Servers/ServerBase.cs | |||
@@ -492,18 +492,18 @@ namespace OpenSim.Framework.Servers | |||
492 | 492 | ||
493 | if (!int.TryParse(rawLevel, out newLevel)) | 493 | if (!int.TryParse(rawLevel, out newLevel)) |
494 | { | 494 | { |
495 | MainConsole.Instance.OutputFormat("{0} is not a valid debug level", rawLevel); | 495 | MainConsole.Instance.Output("{0} is not a valid debug level", null, rawLevel); |
496 | return; | 496 | return; |
497 | } | 497 | } |
498 | 498 | ||
499 | if (newLevel < 0 || newLevel > Util.MAX_THREADPOOL_LEVEL) | 499 | if (newLevel < 0 || newLevel > Util.MAX_THREADPOOL_LEVEL) |
500 | { | 500 | { |
501 | MainConsole.Instance.OutputFormat("{0} is outside the valid debug level range of 0.." + Util.MAX_THREADPOOL_LEVEL, newLevel); | 501 | MainConsole.Instance.Output("{0} is outside the valid debug level range of 0.." + Util.MAX_THREADPOOL_LEVEL, null, newLevel); |
502 | return; | 502 | return; |
503 | } | 503 | } |
504 | 504 | ||
505 | Util.LogThreadPool = newLevel; | 505 | Util.LogThreadPool = newLevel; |
506 | MainConsole.Instance.OutputFormat("LogThreadPool set to {0}", newLevel); | 506 | MainConsole.Instance.Output("LogThreadPool set to {0}", null, newLevel); |
507 | } | 507 | } |
508 | 508 | ||
509 | private void HandleForceGc(string module, string[] args) | 509 | private void HandleForceGc(string module, string[] args) |
@@ -991,9 +991,9 @@ namespace OpenSim.Framework.Servers | |||
991 | } | 991 | } |
992 | 992 | ||
993 | if (Watchdog.AbortThread(threadId)) | 993 | if (Watchdog.AbortThread(threadId)) |
994 | MainConsole.Instance.OutputFormat("Aborted thread with id {0}", threadId); | 994 | MainConsole.Instance.Output("Aborted thread with id {0}", null, threadId); |
995 | else | 995 | else |
996 | MainConsole.Instance.OutputFormat("ERROR - Thread with id {0} not found in managed threads", threadId); | 996 | MainConsole.Instance.Output("ERROR - Thread with id {0} not found in managed threads", null, threadId); |
997 | } | 997 | } |
998 | 998 | ||
999 | /// <summary> | 999 | /// <summary> |
@@ -1020,7 +1020,7 @@ namespace OpenSim.Framework.Servers | |||
1020 | protected void Notice(string format, params object[] components) | 1020 | protected void Notice(string format, params object[] components) |
1021 | { | 1021 | { |
1022 | if (m_console != null) | 1022 | if (m_console != null) |
1023 | m_console.OutputFormat(format, components); | 1023 | m_console.Output(format, null, components); |
1024 | } | 1024 | } |
1025 | 1025 | ||
1026 | public virtual void Shutdown() | 1026 | public virtual void Shutdown() |