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/OpenSimBase.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/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 468881e..3e4db41 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -330,16 +330,11 @@ namespace OpenSim | |||
330 | /// <summary> | 330 | /// <summary> |
331 | /// Performs initialisation of the scene, such as loading configuration from disk. | 331 | /// Performs initialisation of the scene, such as loading configuration from disk. |
332 | /// </summary> | 332 | /// </summary> |
333 | protected void InternalStartUp() | 333 | public override void StartUp() |
334 | { | 334 | { |
335 | m_log.Info("[STARTUP]: Version " + m_version + "\n"); | ||
336 | |||
337 | m_stats = StatsManager.StartCollectingSimExtraStats(); | ||
338 | |||
339 | // Do baseclass startup sequence: OpenSim.Region.ClientStack.RegionApplicationBase.StartUp | ||
340 | // TerrainManager, StorageManager, HTTP Server | ||
341 | // This base will call abstract Initialize | ||
342 | base.StartUp(); | 335 | base.StartUp(); |
336 | |||
337 | m_stats = StatsManager.StartCollectingSimExtraStats(); | ||
343 | 338 | ||
344 | // StandAlone mode? m_sandbox is determined by !startupConfig.GetBoolean("gridmode", false) | 339 | // StandAlone mode? m_sandbox is determined by !startupConfig.GetBoolean("gridmode", false) |
345 | if (m_sandbox) | 340 | if (m_sandbox) |