aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Servers/BaseOpenSimServer.cs2
-rw-r--r--OpenSim/Region/Application/OpenSim.cs4
-rw-r--r--bin/startuplogo.txt2
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
index 8f103e1..cc255b2 100644
--- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs
+++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs
@@ -217,7 +217,7 @@ namespace OpenSim.Framework.Servers
217 217
218 TimeSpan timeTaken = DateTime.Now - m_startuptime; 218 TimeSpan timeTaken = DateTime.Now - m_startuptime;
219 219
220 m_log.InfoFormat("[STARTUP]: Server startup took {0}m {1}s", timeTaken.Minutes, timeTaken.Seconds); 220 m_log.InfoFormat("[STARTUP]: STARTUP COMPLETE - took {0}m {1}s", timeTaken.Minutes, timeTaken.Seconds);
221 } 221 }
222 222
223 /// <summary> 223 /// <summary>
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index 1e2b8a5..748edbb 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -84,7 +84,7 @@ namespace OpenSim
84 /// <summary> 84 /// <summary>
85 /// Performs initialisation of the scene, such as loading configuration from disk. 85 /// Performs initialisation of the scene, such as loading configuration from disk.
86 /// </summary> 86 /// </summary>
87 public override void Startup() 87 protected override void StartupSpecific()
88 { 88 {
89 m_log.Info("===================================================================="); 89 m_log.Info("====================================================================");
90 m_log.Info("========================= STARTING OPENSIM ========================="); 90 m_log.Info("========================= STARTING OPENSIM =========================");
@@ -94,7 +94,7 @@ namespace OpenSim
94 m_console = new ConsoleBase("Region", this); 94 m_console = new ConsoleBase("Region", this);
95 MainConsole.Instance = m_console; 95 MainConsole.Instance = m_console;
96 96
97 base.Startup(); 97 base.StartupSpecific();
98 98
99 //Run Startup Commands 99 //Run Startup Commands
100 if (String.IsNullOrEmpty( m_startupCommandsFile )) 100 if (String.IsNullOrEmpty( m_startupCommandsFile ))
diff --git a/bin/startuplogo.txt b/bin/startuplogo.txt
index 08d0edd..8b13789 100644
--- a/bin/startuplogo.txt
+++ b/bin/startuplogo.txt
@@ -1 +1 @@
STARTUP COMPLETE \ No newline at end of file