diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimMain.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 3bee7f3..d05a632 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -323,15 +323,19 @@ namespace OpenSim | |||
323 | // | 323 | // |
324 | // Called from app startup (OpenSim.Application) | 324 | // Called from app startup (OpenSim.Application) |
325 | // | 325 | // |
326 | 326 | m_log.Info("===================================================================="); | |
327 | m_log.Info("[OPENSIM]: Starting Opensim"); | 327 | m_log.Info("========================= STARTING OPENSIM ========================="); |
328 | m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (m_sandbox ? "sandbox" : "grid")); | 328 | m_log.Info("===================================================================="); |
329 | m_log.InfoFormat("[OPENSIM MAIN]: Running in background {0} mode", m_sandbox ? "sandbox" : "grid"); | ||
329 | 330 | ||
330 | InternalStartUp(); | 331 | InternalStartUp(); |
331 | 332 | ||
332 | // We are done with startup | 333 | // We are done with startup |
333 | m_log.Info("[OPENSIM MAIN]: Startup complete, serving " + m_udpServers.Count.ToString() + " region(s)"); | 334 | m_log.InfoFormat("[OPENSIM MAIN]: Startup complete, serving {0} region{1}", |
335 | m_udpServers.Count.ToString(), m_udpServers.Count > 1 ? "s" : ""); | ||
334 | WorldHasComeToAnEnd.WaitOne(); | 336 | WorldHasComeToAnEnd.WaitOne(); |
337 | m_log.Info("[OPENSIM MAIN]: Shutdown complete, goodbye."); | ||
338 | Environment.Exit(0); | ||
335 | } | 339 | } |
336 | 340 | ||
337 | 341 | ||
@@ -684,7 +688,7 @@ namespace OpenSim | |||
684 | public virtual void Shutdown() | 688 | public virtual void Shutdown() |
685 | { | 689 | { |
686 | InternalShutdown(); | 690 | InternalShutdown(); |
687 | Environment.Exit(0); | 691 | ApocalypseNow(); |
688 | } | 692 | } |
689 | 693 | ||
690 | /// <summary> | 694 | /// <summary> |