aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorBlueWall2014-10-15 09:42:29 -0400
committerBlueWall2014-10-15 09:42:29 -0400
commit5c9ef4d083a6162b097797aacfc83d3cdeb50c73 (patch)
tree972e0fb4b9bd1e609c4c60c3e315f46cb0156b20 /OpenSim/Data
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')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserProfilesData.cs36
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs36
-rw-r--r--OpenSim/Data/SQLite/SQLiteUserProfilesData.cs36
3 files changed, 54 insertions, 54 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 }
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 7980751..3bbd7d5 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -119,7 +119,7 @@ namespace OpenSim.Data.PGSQL
119 } 119 }
120 catch (Exception e) 120 catch (Exception e)
121 { 121 {
122 m_log.DebugFormat("[PROFILES_DATA]" + 122 m_log.ErrorFormat("[PROFILES_DATA]" +
123 ": UserAccount exception {0}", e.Message); 123 ": UserAccount exception {0}", e.Message);
124 } 124 }
125 n.Add("classifieduuid", OSD.FromUUID(Id)); 125 n.Add("classifieduuid", OSD.FromUUID(Id));
@@ -212,7 +212,7 @@ namespace OpenSim.Data.PGSQL
212 } 212 }
213 catch (Exception e) 213 catch (Exception e)
214 { 214 {
215 m_log.DebugFormat("[PROFILES_DATA]" + 215 m_log.ErrorFormat("[PROFILES_DATA]" +
216 ": ClassifiedesUpdate exception {0}", e.Message); 216 ": ClassifiedesUpdate exception {0}", e.Message);
217 result = e.Message; 217 result = e.Message;
218 return false; 218 return false;
@@ -246,7 +246,7 @@ namespace OpenSim.Data.PGSQL
246 } 246 }
247 catch (Exception e) 247 catch (Exception e)
248 { 248 {
249 m_log.DebugFormat("[PROFILES_DATA]" + 249 m_log.ErrorFormat("[PROFILES_DATA]" +
250 ": DeleteClassifiedRecord exception {0}", e.Message); 250 ": DeleteClassifiedRecord exception {0}", e.Message);
251 return false; 251 return false;
252 } 252 }
@@ -295,7 +295,7 @@ namespace OpenSim.Data.PGSQL
295 } 295 }
296 catch (Exception e) 296 catch (Exception e)
297 { 297 {
298 m_log.DebugFormat("[PROFILES_DATA]" + 298 m_log.ErrorFormat("[PROFILES_DATA]" +
299 ": GetClassifiedInfo exception {0}", e.Message); 299 ": GetClassifiedInfo exception {0}", e.Message);
300 } 300 }
301 return true; 301 return true;
@@ -350,7 +350,7 @@ namespace OpenSim.Data.PGSQL
350 } 350 }
351 catch (Exception e) 351 catch (Exception e)
352 { 352 {
353 m_log.DebugFormat("[PROFILES_DATA]" + 353 m_log.ErrorFormat("[PROFILES_DATA]" +
354 ": GetAvatarPicks exception {0}", e.Message); 354 ": GetAvatarPicks exception {0}", e.Message);
355 } 355 }
356 return data; 356 return data;
@@ -407,7 +407,7 @@ namespace OpenSim.Data.PGSQL
407 } 407 }
408 catch (Exception e) 408 catch (Exception e)
409 { 409 {
410 m_log.DebugFormat("[PROFILES_DATA]" + 410 m_log.ErrorFormat("[PROFILES_DATA]" +
411 ": GetPickInfo exception {0}", e.Message); 411 ": GetPickInfo exception {0}", e.Message);
412 } 412 }
413 return pick; 413 return pick;
@@ -460,7 +460,7 @@ namespace OpenSim.Data.PGSQL
460 } 460 }
461 catch (Exception e) 461 catch (Exception e)
462 { 462 {
463 m_log.DebugFormat("[PROFILES_DATA]" + 463 m_log.ErrorFormat("[PROFILES_DATA]" +
464 ": UpdateAvatarNotes exception {0}", e.Message); 464 ": UpdateAvatarNotes exception {0}", e.Message);
465 return false; 465 return false;
466 } 466 }
@@ -490,7 +490,7 @@ namespace OpenSim.Data.PGSQL
490 } 490 }
491 catch (Exception e) 491 catch (Exception e)
492 { 492 {
493 m_log.DebugFormat("[PROFILES_DATA]" + 493 m_log.ErrorFormat("[PROFILES_DATA]" +
494 ": DeleteUserPickRecord exception {0}", e.Message); 494 ": DeleteUserPickRecord exception {0}", e.Message);
495 return false; 495 return false;
496 } 496 }
@@ -531,7 +531,7 @@ namespace OpenSim.Data.PGSQL
531 } 531 }
532 catch (Exception e) 532 catch (Exception e)
533 { 533 {
534 m_log.DebugFormat("[PROFILES_DATA]" + 534 m_log.ErrorFormat("[PROFILES_DATA]" +
535 ": GetAvatarNotes exception {0}", e.Message); 535 ": GetAvatarNotes exception {0}", e.Message);
536 } 536 }
537 return true; 537 return true;
@@ -580,7 +580,7 @@ namespace OpenSim.Data.PGSQL
580 } 580 }
581 catch (Exception e) 581 catch (Exception e)
582 { 582 {
583 m_log.DebugFormat("[PROFILES_DATA]" + 583 m_log.ErrorFormat("[PROFILES_DATA]" +
584 ": UpdateAvatarNotes exception {0}", e.Message); 584 ": UpdateAvatarNotes exception {0}", e.Message);
585 return false; 585 return false;
586 } 586 }
@@ -706,7 +706,7 @@ namespace OpenSim.Data.PGSQL
706 } 706 }
707 catch (Exception e) 707 catch (Exception e)
708 { 708 {
709 m_log.DebugFormat("[PROFILES_DATA]" + 709 m_log.ErrorFormat("[PROFILES_DATA]" +
710 ": Requst properties exception {0}", e.Message; 710 ": Requst properties exception {0}", e.Message;
711 result = e.Message; 711 result = e.Message;
712 return false; 712 return false;
@@ -746,7 +746,7 @@ namespace OpenSim.Data.PGSQL
746 } 746 }
747 catch (Exception e) 747 catch (Exception e)
748 { 748 {
749 m_log.DebugFormat("[PROFILES_DATA]" + 749 m_log.ErrorFormat("[PROFILES_DATA]" +
750 ": AgentPropertiesUpdate exception {0}", e.Message); 750 ": AgentPropertiesUpdate exception {0}", e.Message);
751 751
752 return false; 752 return false;
@@ -788,7 +788,7 @@ namespace OpenSim.Data.PGSQL
788 } 788 }
789 catch (Exception e) 789 catch (Exception e)
790 { 790 {
791 m_log.DebugFormat("[PROFILES_DATA]" + 791 m_log.ErrorFormat("[PROFILES_DATA]" +
792 ": AgentInterestsUpdate exception {0}", e.Message); 792 ": AgentInterestsUpdate exception {0}", e.Message);
793 result = e.Message; 793 result = e.Message;
794 return false; 794 return false;
@@ -868,7 +868,7 @@ namespace OpenSim.Data.PGSQL
868 } 868 }
869 catch (Exception e) 869 catch (Exception e)
870 { 870 {
871 m_log.DebugFormat("[PROFILES_DATA]" + 871 m_log.ErrorFormat("[PROFILES_DATA]" +
872 ": GetAvatarNotes exception {0}", e.Message); 872 ": GetAvatarNotes exception {0}", e.Message);
873 } 873 }
874 return data; 874 return data;
@@ -922,7 +922,7 @@ namespace OpenSim.Data.PGSQL
922 } 922 }
923 catch (Exception e) 923 catch (Exception e)
924 { 924 {
925 m_log.DebugFormat("[PROFILES_DATA]" + 925 m_log.ErrorFormat("[PROFILES_DATA]" +
926 ": Get preferences exception {0}", e.Message); 926 ": Get preferences exception {0}", e.Message);
927 result = e.Message; 927 result = e.Message;
928 } 928 }
@@ -958,7 +958,7 @@ namespace OpenSim.Data.PGSQL
958 } 958 }
959 catch (Exception e) 959 catch (Exception e)
960 { 960 {
961 m_log.DebugFormat("[PROFILES_DATA]" + 961 m_log.ErrorFormat("[PROFILES_DATA]" +
962 ": AgentInterestsUpdate exception {0}", e.Message); 962 ": AgentInterestsUpdate exception {0}", e.Message);
963 result = e.Message; 963 result = e.Message;
964 return false; 964 return false;
@@ -1021,7 +1021,7 @@ namespace OpenSim.Data.PGSQL
1021 } 1021 }
1022 catch (Exception e) 1022 catch (Exception e)
1023 { 1023 {
1024 m_log.DebugFormat("[PROFILES_DATA]" + 1024 m_log.ErrorFormat("[PROFILES_DATA]" +
1025 ": Requst application data exception {0}", e.Message); 1025 ": Requst application data exception {0}", e.Message);
1026 result = e.Message; 1026 result = e.Message;
1027 return false; 1027 return false;
@@ -1061,7 +1061,7 @@ namespace OpenSim.Data.PGSQL
1061 } 1061 }
1062 catch (Exception e) 1062 catch (Exception e)
1063 { 1063 {
1064 m_log.DebugFormat("[PROFILES_DATA]" + 1064 m_log.ErrorFormat("[PROFILES_DATA]" +
1065 ": SetUserData exception {0}", e.Message); 1065 ": SetUserData exception {0}", e.Message);
1066 return false; 1066 return false;
1067 } 1067 }
diff --git a/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs b/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
index 5494091..7bf3bd5 100644
--- a/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
+++ b/OpenSim/Data/SQLite/SQLiteUserProfilesData.cs
@@ -114,7 +114,7 @@ namespace OpenSim.Data.SQLite
114 } 114 }
115 catch (Exception e) 115 catch (Exception e)
116 { 116 {
117 m_log.DebugFormat("[PROFILES_DATA]" + 117 m_log.ErrorFormat("[PROFILES_DATA]" +
118 ": UserAccount exception {0}", e.Message); 118 ": UserAccount exception {0}", e.Message);
119 } 119 }
120 n.Add("classifieduuid", OSD.FromUUID(Id)); 120 n.Add("classifieduuid", OSD.FromUUID(Id));
@@ -217,7 +217,7 @@ namespace OpenSim.Data.SQLite
217 } 217 }
218 catch (Exception e) 218 catch (Exception e)
219 { 219 {
220 m_log.DebugFormat("[PROFILES_DATA]" + 220 m_log.ErrorFormat("[PROFILES_DATA]" +
221 ": ClassifiedesUpdate exception {0}", e.Message); 221 ": ClassifiedesUpdate exception {0}", e.Message);
222 result = e.Message; 222 result = e.Message;
223 return false; 223 return false;
@@ -243,7 +243,7 @@ namespace OpenSim.Data.SQLite
243 } 243 }
244 catch (Exception e) 244 catch (Exception e)
245 { 245 {
246 m_log.DebugFormat("[PROFILES_DATA]" + 246 m_log.ErrorFormat("[PROFILES_DATA]" +
247 ": DeleteClassifiedRecord exception {0}", e.Message); 247 ": DeleteClassifiedRecord exception {0}", e.Message);
248 return false; 248 return false;
249 } 249 }
@@ -289,7 +289,7 @@ namespace OpenSim.Data.SQLite
289 } 289 }
290 catch (Exception e) 290 catch (Exception e)
291 { 291 {
292 m_log.DebugFormat("[PROFILES_DATA]" + 292 m_log.ErrorFormat("[PROFILES_DATA]" +
293 ": GetPickInfo exception {0}", e.Message); 293 ": GetPickInfo exception {0}", e.Message);
294 } 294 }
295 return true; 295 return true;
@@ -326,7 +326,7 @@ namespace OpenSim.Data.SQLite
326 } 326 }
327 catch (Exception e) 327 catch (Exception e)
328 { 328 {
329 m_log.DebugFormat("[PROFILES_DATA]" + 329 m_log.ErrorFormat("[PROFILES_DATA]" +
330 ": GetAvatarPicks exception {0}", e.Message); 330 ": GetAvatarPicks exception {0}", e.Message);
331 } 331 }
332 return data; 332 return data;
@@ -378,7 +378,7 @@ namespace OpenSim.Data.SQLite
378 } 378 }
379 catch (Exception e) 379 catch (Exception e)
380 { 380 {
381 m_log.DebugFormat("[PROFILES_DATA]" + 381 m_log.ErrorFormat("[PROFILES_DATA]" +
382 ": GetPickInfo exception {0}", e.Message); 382 ": GetPickInfo exception {0}", e.Message);
383 } 383 }
384 return pick; 384 return pick;
@@ -446,7 +446,7 @@ namespace OpenSim.Data.SQLite
446 } 446 }
447 catch (Exception e) 447 catch (Exception e)
448 { 448 {
449 m_log.DebugFormat("[PROFILES_DATA]" + 449 m_log.ErrorFormat("[PROFILES_DATA]" +
450 ": UpdateAvatarNotes exception {0}", e.Message); 450 ": UpdateAvatarNotes exception {0}", e.Message);
451 return false; 451 return false;
452 } 452 }
@@ -471,7 +471,7 @@ namespace OpenSim.Data.SQLite
471 } 471 }
472 catch (Exception e) 472 catch (Exception e)
473 { 473 {
474 m_log.DebugFormat("[PROFILES_DATA]" + 474 m_log.ErrorFormat("[PROFILES_DATA]" +
475 ": DeleteUserPickRecord exception {0}", e.Message); 475 ": DeleteUserPickRecord exception {0}", e.Message);
476 return false; 476 return false;
477 } 477 }
@@ -507,7 +507,7 @@ namespace OpenSim.Data.SQLite
507 } 507 }
508 catch (Exception e) 508 catch (Exception e)
509 { 509 {
510 m_log.DebugFormat("[PROFILES_DATA]" + 510 m_log.ErrorFormat("[PROFILES_DATA]" +
511 ": GetAvatarNotes exception {0}", e.Message); 511 ": GetAvatarNotes exception {0}", e.Message);
512 } 512 }
513 return true; 513 return true;
@@ -550,7 +550,7 @@ namespace OpenSim.Data.SQLite
550 } 550 }
551 catch (Exception e) 551 catch (Exception e)
552 { 552 {
553 m_log.DebugFormat("[PROFILES_DATA]" + 553 m_log.ErrorFormat("[PROFILES_DATA]" +
554 ": UpdateAvatarNotes exception {0}", e.Message); 554 ": UpdateAvatarNotes exception {0}", e.Message);
555 return false; 555 return false;
556 } 556 }
@@ -577,7 +577,7 @@ namespace OpenSim.Data.SQLite
577 } 577 }
578 catch(Exception e) 578 catch(Exception e)
579 { 579 {
580 m_log.DebugFormat("[PROFILES_DATA]" + 580 m_log.ErrorFormat("[PROFILES_DATA]" +
581 ": GetAvatarProperties exception {0}", e.Message); 581 ": GetAvatarProperties exception {0}", e.Message);
582 result = e.Message; 582 result = e.Message;
583 return false; 583 return false;
@@ -696,7 +696,7 @@ namespace OpenSim.Data.SQLite
696 } 696 }
697 catch (Exception e) 697 catch (Exception e)
698 { 698 {
699 m_log.DebugFormat("[PROFILES_DATA]" + 699 m_log.ErrorFormat("[PROFILES_DATA]" +
700 ": AgentPropertiesUpdate exception {0}", e.Message); 700 ": AgentPropertiesUpdate exception {0}", e.Message);
701 701
702 return false; 702 return false;
@@ -733,7 +733,7 @@ namespace OpenSim.Data.SQLite
733 } 733 }
734 catch (Exception e) 734 catch (Exception e)
735 { 735 {
736 m_log.DebugFormat("[PROFILES_DATA]" + 736 m_log.ErrorFormat("[PROFILES_DATA]" +
737 ": AgentInterestsUpdate exception {0}", e.Message); 737 ": AgentInterestsUpdate exception {0}", e.Message);
738 result = e.Message; 738 result = e.Message;
739 return false; 739 return false;
@@ -764,7 +764,7 @@ namespace OpenSim.Data.SQLite
764 } 764 }
765 catch (Exception e) 765 catch (Exception e)
766 { 766 {
767 m_log.DebugFormat("[PROFILES_DATA]" + 767 m_log.ErrorFormat("[PROFILES_DATA]" +
768 ": AgentInterestsUpdate exception {0}", e.Message); 768 ": AgentInterestsUpdate exception {0}", e.Message);
769 result = e.Message; 769 result = e.Message;
770 return false; 770 return false;
@@ -816,7 +816,7 @@ namespace OpenSim.Data.SQLite
816 } 816 }
817 catch (Exception e) 817 catch (Exception e)
818 { 818 {
819 m_log.DebugFormat("[PROFILES_DATA]" + 819 m_log.ErrorFormat("[PROFILES_DATA]" +
820 ": Get preferences exception {0}", e.Message); 820 ": Get preferences exception {0}", e.Message);
821 result = e.Message; 821 result = e.Message;
822 return false; 822 return false;
@@ -871,7 +871,7 @@ namespace OpenSim.Data.SQLite
871 } 871 }
872 catch (Exception e) 872 catch (Exception e)
873 { 873 {
874 m_log.DebugFormat("[PROFILES_DATA]" + 874 m_log.ErrorFormat("[PROFILES_DATA]" +
875 ": Requst application data exception {0}", e.Message); 875 ": Requst application data exception {0}", e.Message);
876 result = e.Message; 876 result = e.Message;
877 return false; 877 return false;
@@ -904,7 +904,7 @@ namespace OpenSim.Data.SQLite
904 } 904 }
905 catch (Exception e) 905 catch (Exception e)
906 { 906 {
907 m_log.DebugFormat("[PROFILES_DATA]" + 907 m_log.ErrorFormat("[PROFILES_DATA]" +
908 ": SetUserData exception {0}", e.Message); 908 ": SetUserData exception {0}", e.Message);
909 return false; 909 return false;
910 } 910 }
@@ -968,7 +968,7 @@ namespace OpenSim.Data.SQLite
968 } 968 }
969 catch (Exception e) 969 catch (Exception e)
970 { 970 {
971 m_log.DebugFormat("[PROFILES_DATA]" + 971 m_log.ErrorFormat("[PROFILES_DATA]" +
972 ": GetAvatarNotes exception {0}", e.Message); 972 ": GetAvatarNotes exception {0}", e.Message);
973 } 973 }
974 return data; 974 return data;