aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorBlueWall2014-10-15 09:42:29 -0400
committerBlueWall2014-10-15 09:42:29 -0400
commit5c9ef4d083a6162b097797aacfc83d3cdeb50c73 (patch)
tree972e0fb4b9bd1e609c4c60c3e315f46cb0156b20 /OpenSim/Data/MySQL
parentCleanup unused code (diff)
downloadopensim-SC_OLD-5c9ef4d083a6162b097797aacfc83d3cdeb50c73.zip
opensim-SC_OLD-5c9ef4d083a6162b097797aacfc83d3cdeb50c73.tar.gz
opensim-SC_OLD-5c9ef4d083a6162b097797aacfc83d3cdeb50c73.tar.bz2
opensim-SC_OLD-5c9ef4d083a6162b097797aacfc83d3cdeb50c73.tar.xz
Fix logging level to Error in exception handlers
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserProfilesData.cs36
1 files changed, 18 insertions, 18 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
index 7e846e3..c8479f0 100644
--- a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
@@ -111,7 +111,7 @@ namespace OpenSim.Data.MySQL
111 } 111 }
112 catch (Exception e) 112 catch (Exception e)
113 { 113 {
114 m_log.DebugFormat("[PROFILES_DATA]" + 114 m_log.ErrorFormat("[PROFILES_DATA]" +
115 ": UserAccount exception {0}", e.Message); 115 ": UserAccount exception {0}", e.Message);
116 } 116 }
117 n.Add("classifieduuid", OSD.FromUUID(Id)); 117 n.Add("classifieduuid", OSD.FromUUID(Id));
@@ -232,7 +232,7 @@ namespace OpenSim.Data.MySQL
232 } 232 }
233 catch (Exception e) 233 catch (Exception e)
234 { 234 {
235 m_log.DebugFormat("[PROFILES_DATA]" + 235 m_log.ErrorFormat("[PROFILES_DATA]" +
236 ": ClassifiedesUpdate exception {0}", e.Message); 236 ": ClassifiedesUpdate exception {0}", e.Message);
237 result = e.Message; 237 result = e.Message;
238 return false; 238 return false;
@@ -262,7 +262,7 @@ namespace OpenSim.Data.MySQL
262 } 262 }
263 catch (Exception e) 263 catch (Exception e)
264 { 264 {
265 m_log.DebugFormat("[PROFILES_DATA]" + 265 m_log.ErrorFormat("[PROFILES_DATA]" +
266 ": DeleteClassifiedRecord exception {0}", e.Message); 266 ": DeleteClassifiedRecord exception {0}", e.Message);
267 return false; 267 return false;
268 } 268 }
@@ -312,7 +312,7 @@ namespace OpenSim.Data.MySQL
312 } 312 }
313 catch (Exception e) 313 catch (Exception e)
314 { 314 {
315 m_log.DebugFormat("[PROFILES_DATA]" + 315 m_log.ErrorFormat("[PROFILES_DATA]" +
316 ": GetPickInfo exception {0}", e.Message); 316 ": GetPickInfo exception {0}", e.Message);
317 } 317 }
318 return true; 318 return true;
@@ -356,7 +356,7 @@ namespace OpenSim.Data.MySQL
356 } 356 }
357 catch (Exception e) 357 catch (Exception e)
358 { 358 {
359 m_log.DebugFormat("[PROFILES_DATA]" + 359 m_log.ErrorFormat("[PROFILES_DATA]" +
360 ": GetAvatarPicks exception {0}", e.Message); 360 ": GetAvatarPicks exception {0}", e.Message);
361 } 361 }
362 return data; 362 return data;
@@ -413,7 +413,7 @@ namespace OpenSim.Data.MySQL
413 } 413 }
414 catch (Exception e) 414 catch (Exception e)
415 { 415 {
416 m_log.DebugFormat("[PROFILES_DATA]" + 416 m_log.ErrorFormat("[PROFILES_DATA]" +
417 ": GetPickInfo exception {0}", e.Message); 417 ": GetPickInfo exception {0}", e.Message);
418 } 418 }
419 return pick; 419 return pick;
@@ -472,7 +472,7 @@ namespace OpenSim.Data.MySQL
472 } 472 }
473 catch (Exception e) 473 catch (Exception e)
474 { 474 {
475 m_log.DebugFormat("[PROFILES_DATA]" + 475 m_log.ErrorFormat("[PROFILES_DATA]" +
476 ": UpdateAvatarNotes exception {0}", e.Message); 476 ": UpdateAvatarNotes exception {0}", e.Message);
477 return false; 477 return false;
478 } 478 }
@@ -502,7 +502,7 @@ namespace OpenSim.Data.MySQL
502 } 502 }
503 catch (Exception e) 503 catch (Exception e)
504 { 504 {
505 m_log.DebugFormat("[PROFILES_DATA]" + 505 m_log.ErrorFormat("[PROFILES_DATA]" +
506 ": DeleteUserPickRecord exception {0}", e.Message); 506 ": DeleteUserPickRecord exception {0}", e.Message);
507 return false; 507 return false;
508 } 508 }
@@ -547,7 +547,7 @@ namespace OpenSim.Data.MySQL
547 } 547 }
548 catch (Exception e) 548 catch (Exception e)
549 { 549 {
550 m_log.DebugFormat("[PROFILES_DATA]" + 550 m_log.ErrorFormat("[PROFILES_DATA]" +
551 ": GetAvatarNotes exception {0}", e.Message); 551 ": GetAvatarNotes exception {0}", e.Message);
552 } 552 }
553 return true; 553 return true;
@@ -595,7 +595,7 @@ namespace OpenSim.Data.MySQL
595 } 595 }
596 catch (Exception e) 596 catch (Exception e)
597 { 597 {
598 m_log.DebugFormat("[PROFILES_DATA]" + 598 m_log.ErrorFormat("[PROFILES_DATA]" +
599 ": UpdateAvatarNotes exception {0}", e.Message); 599 ": UpdateAvatarNotes exception {0}", e.Message);
600 return false; 600 return false;
601 } 601 }
@@ -713,7 +713,7 @@ namespace OpenSim.Data.MySQL
713 } 713 }
714 catch (Exception e) 714 catch (Exception e)
715 { 715 {
716 m_log.DebugFormat("[PROFILES_DATA]" + 716 m_log.ErrorFormat("[PROFILES_DATA]" +
717 ": Requst properties exception {0}", e.Message); 717 ": Requst properties exception {0}", e.Message);
718 result = e.Message; 718 result = e.Message;
719 return false; 719 return false;
@@ -753,7 +753,7 @@ namespace OpenSim.Data.MySQL
753 } 753 }
754 catch (Exception e) 754 catch (Exception e)
755 { 755 {
756 m_log.DebugFormat("[PROFILES_DATA]" + 756 m_log.ErrorFormat("[PROFILES_DATA]" +
757 ": AgentPropertiesUpdate exception {0}", e.Message); 757 ": AgentPropertiesUpdate exception {0}", e.Message);
758 758
759 return false; 759 return false;
@@ -795,7 +795,7 @@ namespace OpenSim.Data.MySQL
795 } 795 }
796 catch (Exception e) 796 catch (Exception e)
797 { 797 {
798 m_log.DebugFormat("[PROFILES_DATA]" + 798 m_log.ErrorFormat("[PROFILES_DATA]" +
799 ": AgentInterestsUpdate exception {0}", e.Message); 799 ": AgentInterestsUpdate exception {0}", e.Message);
800 result = e.Message; 800 result = e.Message;
801 return false; 801 return false;
@@ -878,7 +878,7 @@ namespace OpenSim.Data.MySQL
878 } 878 }
879 catch (Exception e) 879 catch (Exception e)
880 { 880 {
881 m_log.DebugFormat("[PROFILES_DATA]" + 881 m_log.ErrorFormat("[PROFILES_DATA]" +
882 ": GetAvatarNotes exception {0}", e.Message); 882 ": GetAvatarNotes exception {0}", e.Message);
883 } 883 }
884 return data; 884 return data;
@@ -936,7 +936,7 @@ namespace OpenSim.Data.MySQL
936 } 936 }
937 catch (Exception e) 937 catch (Exception e)
938 { 938 {
939 m_log.DebugFormat("[PROFILES_DATA]" + 939 m_log.ErrorFormat("[PROFILES_DATA]" +
940 ": Get preferences exception {0}", e.Message); 940 ": Get preferences exception {0}", e.Message);
941 result = e.Message; 941 result = e.Message;
942 return false; 942 return false;
@@ -970,7 +970,7 @@ namespace OpenSim.Data.MySQL
970 } 970 }
971 catch (Exception e) 971 catch (Exception e)
972 { 972 {
973 m_log.DebugFormat("[PROFILES_DATA]" + 973 m_log.ErrorFormat("[PROFILES_DATA]" +
974 ": AgentInterestsUpdate exception {0}", e.Message); 974 ": AgentInterestsUpdate exception {0}", e.Message);
975 result = e.Message; 975 result = e.Message;
976 return false; 976 return false;
@@ -1030,7 +1030,7 @@ namespace OpenSim.Data.MySQL
1030 } 1030 }
1031 catch (Exception e) 1031 catch (Exception e)
1032 { 1032 {
1033 m_log.DebugFormat("[PROFILES_DATA]" + 1033 m_log.ErrorFormat("[PROFILES_DATA]" +
1034 ": Requst application data exception {0}", e.Message); 1034 ": Requst application data exception {0}", e.Message);
1035 result = e.Message; 1035 result = e.Message;
1036 return false; 1036 return false;
@@ -1067,7 +1067,7 @@ namespace OpenSim.Data.MySQL
1067 } 1067 }
1068 catch (Exception e) 1068 catch (Exception e)
1069 { 1069 {
1070 m_log.DebugFormat("[PROFILES_DATA]" + 1070 m_log.ErrorFormat("[PROFILES_DATA]" +
1071 ": SetUserData exception {0}", e.Message); 1071 ": SetUserData exception {0}", e.Message);
1072 return false; 1072 return false;
1073 } 1073 }