From 19595a28253e413d986f2f1ebc879ba9eb4c0e8a Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 25 Mar 2009 19:14:36 +0000 Subject: * minor: spit out creator name on save iar * not yet ready for use --- OpenSim/Region/Application/OpenSimBase.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Application/OpenSimBase.cs') diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 941a7d2..05f773e 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs @@ -423,7 +423,7 @@ namespace OpenSim IAssetCache assetCache = null; if (m_configSettings.AssetCache != null && m_configSettings.AssetCache != String.Empty) { - m_log.DebugFormat("[OPENSIMBASE] Attempting to load asset cache id={0}", m_configSettings.AssetCache); + m_log.DebugFormat("[OPENSIMBASE]: Attempting to load asset cache id = {0}", m_configSettings.AssetCache); try { PluginInitialiserBase init = new AssetCachePluginInitialiser(m_configSettings, assetServer); @@ -436,7 +436,7 @@ namespace OpenSim } catch (Exception e) { - m_log.Debug("[OPENSIMBASE] ResolveAssetCache completed"); + m_log.Debug("[OPENSIMBASE]: ResolveAssetCache completed"); m_log.Debug(e); } } @@ -449,12 +449,12 @@ namespace OpenSim { if (LoginEnabled) { - m_log.Info("[Login] Login are now enabled "); + m_log.Info("[Login]: Login is now enabled "); m_commsManager.GridService.RegionLoginsEnabled = true; } else { - m_log.Info("[Login] Login are now disabled "); + m_log.Info("[Login]: Login is now disabled "); m_commsManager.GridService.RegionLoginsEnabled = false; } } -- cgit v1.1