From 75baf6ce0185e382aad5eadb999398d1c79920bb Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 13 Jun 2015 14:34:28 -0700 Subject: [PATCH] Added ':' to debug messages --- .../OptionalModules/ViewerSupport/GodNamesModule.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs b/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs index a0fc1f5682..e0537a4f65 100644 --- a/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs +++ b/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs @@ -59,23 +59,23 @@ namespace OpenSim.Region.OptionalModules.ViewerSupport } if (!moduleConfig.GetBoolean("Enabled", false)) { - m_log.Info("[GODNAMES] Addon is disabled"); + m_log.Info("[GODNAMES]: Addon is disabled"); return; } - m_log.Info("[GODNAMES] Enabled"); + m_log.Info("[GODNAMES]: Enabled"); m_enabled = true; string conf_str = moduleConfig.GetString("FullNames", String.Empty); foreach (string strl in conf_str.Split(',')) { string strlan = strl.Trim(" \t".ToCharArray()); - m_log.DebugFormat("[GODNAMES] Adding {0} as a God name", strlan); + m_log.DebugFormat("[GODNAMES]: Adding {0} as a God name", strlan); m_fullNames.Add(strlan); } conf_str = moduleConfig.GetString("Surnames", String.Empty); foreach (string strl in conf_str.Split(',')) { string strlan = strl.Trim(" \t".ToCharArray()); - m_log.DebugFormat("[GODNAMES] Adding {0} as a God last name", strlan); + m_log.DebugFormat("[GODNAMES]: Adding {0} as a God last name", strlan); m_lastNames.Add(strlan); } }