From c789a9d02af057e888f9dea50502ed0d787adf4c Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 3 Nov 2008 20:16:47 +0000 Subject: [PATCH] * mionr: correct CONTRIBUTORS file for Plugh --- CONTRIBUTORS.txt | 2 +- .../Environment/Modules/Avatar/Concierge/ConciergeModule.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 489e784a13..228f09c0db 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -56,7 +56,7 @@ Patches * John R Sohn (XenReborn) * Junta Kohime * Kayne -* kcoznes +* Kevin Cozens * kinoc (Daxtron Labs) * krtaylor (IBM) * lulurun diff --git a/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs index 36e90ba584..c941b0e9f2 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Concierge/ConciergeModule.cs @@ -460,7 +460,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge string welcome = Path.Combine(_welcomes, regionName); if (File.Exists(welcome)) { - _log.InfoFormat("[Concierge] UpdateWelcome: updating existing template \"{0}\"", welcome); + _log.InfoFormat("[Concierge]: UpdateWelcome: updating existing template \"{0}\"", welcome); string welcomeBackup = String.Format("{0}~", welcome); if (File.Exists(welcomeBackup)) File.Delete(welcomeBackup); @@ -473,7 +473,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge } catch (Exception e) { - _log.InfoFormat("[Concierge] UpdateWelcome failed: {0}", e.Message); + _log.InfoFormat("[Concierge]: UpdateWelcome failed: {0}", e.Message); responseData["success"] = "false"; responseData["error"] = e.Message;