From 43b094f549763b9538a72255b84cb1cd449c750b Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 13 Jan 2015 18:42:04 +0000 Subject: minor: correct two exception messages in PGSQLUserProfilesData where I copy/pasted AgentInterestsUpdate twice --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 4cda5e0..7974c78 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -783,7 +783,7 @@ namespace OpenSim.Data.PGSQL } catch (Exception e) { - m_log.Error("[PROFILES_DATA]: AgentInterestsUpdate exception ", e); + m_log.Error("[PROFILES_DATA]: UpdateAvatarInterests exception ", e); result = e.Message; return false; } @@ -951,7 +951,7 @@ namespace OpenSim.Data.PGSQL } catch (Exception e) { - m_log.Error("[PROFILES_DATA]: AgentInterestsUpdate exception ", e); + m_log.Error("[PROFILES_DATA]: UpdateUserPreferences exception ", e); result = e.Message; return false; } -- cgit v1.1