aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 18:42:04 +0000
committerJustin Clark-Casey (justincc)2015-01-13 18:42:04 +0000
commit43b094f549763b9538a72255b84cb1cd449c750b (patch)
treee1227a578d8544e025ea33e9fb7d692602fb7b11
parentRemove the locking in PGSQLUserProfilesData which was buggy (Lock object wasn... (diff)
downloadopensim-SC_OLD-43b094f549763b9538a72255b84cb1cd449c750b.zip
opensim-SC_OLD-43b094f549763b9538a72255b84cb1cd449c750b.tar.gz
opensim-SC_OLD-43b094f549763b9538a72255b84cb1cd449c750b.tar.bz2
opensim-SC_OLD-43b094f549763b9538a72255b84cb1cd449c750b.tar.xz
minor: correct two exception messages in PGSQLUserProfilesData where I copy/pasted AgentInterestsUpdate twice
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs4
1 files 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
783 } 783 }
784 catch (Exception e) 784 catch (Exception e)
785 { 785 {
786 m_log.Error("[PROFILES_DATA]: AgentInterestsUpdate exception ", e); 786 m_log.Error("[PROFILES_DATA]: UpdateAvatarInterests exception ", e);
787 result = e.Message; 787 result = e.Message;
788 return false; 788 return false;
789 } 789 }
@@ -951,7 +951,7 @@ namespace OpenSim.Data.PGSQL
951 } 951 }
952 catch (Exception e) 952 catch (Exception e)
953 { 953 {
954 m_log.Error("[PROFILES_DATA]: AgentInterestsUpdate exception ", e); 954 m_log.Error("[PROFILES_DATA]: UpdateUserPreferences exception ", e);
955 result = e.Message; 955 result = e.Message;
956 return false; 956 return false;
957 } 957 }