* oops, fix region startup to be in the correct sequence (though it appeared to work anyway)

0.6.0-stable
Justin Clarke Casey 2008-10-03 15:41:27 +00:00
parent 3902149e1b
commit 3ffd77f70b
3 changed files with 4 additions and 4 deletions

View File

@ -217,7 +217,7 @@ namespace OpenSim.Framework.Servers
TimeSpan timeTaken = DateTime.Now - m_startuptime;
m_log.InfoFormat("[STARTUP]: Server startup took {0}m {1}s", timeTaken.Minutes, timeTaken.Seconds);
m_log.InfoFormat("[STARTUP]: STARTUP COMPLETE - took {0}m {1}s", timeTaken.Minutes, timeTaken.Seconds);
}
/// <summary>

View File

@ -84,7 +84,7 @@ namespace OpenSim
/// <summary>
/// Performs initialisation of the scene, such as loading configuration from disk.
/// </summary>
public override void Startup()
protected override void StartupSpecific()
{
m_log.Info("====================================================================");
m_log.Info("========================= STARTING OPENSIM =========================");
@ -94,7 +94,7 @@ namespace OpenSim
m_console = new ConsoleBase("Region", this);
MainConsole.Instance = m_console;
base.Startup();
base.StartupSpecific();
//Run Startup Commands
if (String.IsNullOrEmpty( m_startupCommandsFile ))

View File

@ -1 +1 @@
STARTUP COMPLETE