From 37c32e1154f04b932db96cbd1cd8d08a5e66ff6d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 17 Mar 2008 19:08:23 +0000 Subject: * Make it more obvious if local user services are being used * Tell the log whether the sim is started in standalone or grid mode --- OpenSim/Region/Application/OpenSimMain.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application') diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 1b8ed45..6522a5a 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs @@ -315,6 +315,7 @@ namespace OpenSim m_log.Info("===================================================================="); m_log.Info("========================= STARTING OPENSIM ========================="); m_log.Info("===================================================================="); + m_log.InfoFormat("[OPENSIM MAIN]: Running in {0} mode", (m_sandbox ? "sandbox" : "grid")); m_console = CreateConsole(); MainConsole.Instance = m_console; @@ -409,7 +410,7 @@ namespace OpenSim // We are done with startup PrintFileToConsole("startuplogo.txt"); - m_log.Info("[STARTUP]: Startup complete, serving " + m_udpServers.Count.ToString() + " region(s)"); + m_log.Info("[OPENSIM MAIN]: Startup complete, serving " + m_udpServers.Count.ToString() + " region(s)"); } protected override void Initialize() @@ -532,7 +533,7 @@ namespace OpenSim public void handleRestartRegion(RegionInfo whichRegion) { - m_log.Error("[MAIN]: Got restart signal from SceneManager"); + m_log.Error("[OPENSIM MAIN]: Got restart signal from SceneManager"); // Shutting down the UDP server bool foundUDPServer = false; int UDPServerElement = 0; -- cgit v1.1