aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDiva Canto2015-06-13 14:34:28 -0700
committerDiva Canto2015-06-13 14:34:28 -0700
commit75baf6ce0185e382aad5eadb999398d1c79920bb (patch)
tree1394682cd6e349b8c9ec8b5dc94dd7bcd6a5a59e /OpenSim
parentAdd optional GodNames region module (diff)
downloadopensim-SC_OLD-75baf6ce0185e382aad5eadb999398d1c79920bb.zip
opensim-SC_OLD-75baf6ce0185e382aad5eadb999398d1c79920bb.tar.gz
opensim-SC_OLD-75baf6ce0185e382aad5eadb999398d1c79920bb.tar.bz2
opensim-SC_OLD-75baf6ce0185e382aad5eadb999398d1c79920bb.tar.xz
Added ':' to debug messages
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs b/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs
index a0fc1f5..e0537a4 100644
--- a/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs
+++ b/OpenSim/Region/OptionalModules/ViewerSupport/GodNamesModule.cs
@@ -59,23 +59,23 @@ namespace OpenSim.Region.OptionalModules.ViewerSupport
59 } 59 }
60 60
61 if (!moduleConfig.GetBoolean("Enabled", false)) { 61 if (!moduleConfig.GetBoolean("Enabled", false)) {
62 m_log.Info("[GODNAMES] Addon is disabled"); 62 m_log.Info("[GODNAMES]: Addon is disabled");
63 return; 63 return;
64 } 64 }
65 65
66 m_log.Info("[GODNAMES] Enabled"); 66 m_log.Info("[GODNAMES]: Enabled");
67 m_enabled = true; 67 m_enabled = true;
68 string conf_str = moduleConfig.GetString("FullNames", String.Empty); 68 string conf_str = moduleConfig.GetString("FullNames", String.Empty);
69 foreach (string strl in conf_str.Split(',')) { 69 foreach (string strl in conf_str.Split(',')) {
70 string strlan = strl.Trim(" \t".ToCharArray()); 70 string strlan = strl.Trim(" \t".ToCharArray());
71 m_log.DebugFormat("[GODNAMES] Adding {0} as a God name", strlan); 71 m_log.DebugFormat("[GODNAMES]: Adding {0} as a God name", strlan);
72 m_fullNames.Add(strlan); 72 m_fullNames.Add(strlan);
73 } 73 }
74 74
75 conf_str = moduleConfig.GetString("Surnames", String.Empty); 75 conf_str = moduleConfig.GetString("Surnames", String.Empty);
76 foreach (string strl in conf_str.Split(',')) { 76 foreach (string strl in conf_str.Split(',')) {
77 string strlan = strl.Trim(" \t".ToCharArray()); 77 string strlan = strl.Trim(" \t".ToCharArray());
78 m_log.DebugFormat("[GODNAMES] Adding {0} as a God last name", strlan); 78 m_log.DebugFormat("[GODNAMES]: Adding {0} as a God last name", strlan);
79 m_lastNames.Add(strlan); 79 m_lastNames.Add(strlan);
80 } 80 }
81 } 81 }