diff options
author | Justin Clarke Casey | 2008-06-01 01:22:19 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-01 01:22:19 +0000 |
commit | 45fef8589d430fac076e534fdf5635ad4de4cb31 (patch) | |
tree | af0efd8a4bf1102823a624d92b4732cc32919db3 /OpenSim/Region/Application/OpenSim.cs | |
parent | * Refactor: Split opensim background server into a separate class (diff) | |
download | opensim-SC_OLD-45fef8589d430fac076e534fdf5635ad4de4cb31.zip opensim-SC_OLD-45fef8589d430fac076e534fdf5635ad4de4cb31.tar.gz opensim-SC_OLD-45fef8589d430fac076e534fdf5635ad4de4cb31.tar.bz2 opensim-SC_OLD-45fef8589d430fac076e534fdf5635ad4de4cb31.tar.xz |
* Move log version printing up into BaseOpenSimServer
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 1bed036..1996182 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -82,10 +82,6 @@ namespace OpenSim | |||
82 | /// </summary> | 82 | /// </summary> |
83 | public override void StartUp() | 83 | public override void StartUp() |
84 | { | 84 | { |
85 | // | ||
86 | // Called from app startup (OpenSim.Application) | ||
87 | // | ||
88 | |||
89 | m_log.Info("===================================================================="); | 85 | m_log.Info("===================================================================="); |
90 | m_log.Info("========================= STARTING OPENSIM ========================="); | 86 | m_log.Info("========================= STARTING OPENSIM ========================="); |
91 | m_log.Info("===================================================================="); | 87 | m_log.Info("===================================================================="); |
@@ -93,7 +89,8 @@ namespace OpenSim | |||
93 | 89 | ||
94 | m_console = CreateConsole(); | 90 | m_console = CreateConsole(); |
95 | MainConsole.Instance = m_console; | 91 | MainConsole.Instance = m_console; |
96 | InternalStartUp(); | 92 | |
93 | base.StartUp(); | ||
97 | 94 | ||
98 | //Run Startup Commands | 95 | //Run Startup Commands |
99 | if (m_startupCommandsFile != String.Empty) | 96 | if (m_startupCommandsFile != String.Empty) |