diff options
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteUserData.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index 24c7944..c7673bd 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs | |||
@@ -557,8 +557,8 @@ namespace OpenSim.Data.SQLite | |||
557 | try { | 557 | try { |
558 | aa = aplist[user]; | 558 | aa = aplist[user]; |
559 | m_log.Info("[APPEARANCE] Found appearance for " + user.ToString() + aa.ToString()); | 559 | m_log.Info("[APPEARANCE] Found appearance for " + user.ToString() + aa.ToString()); |
560 | } catch (System.Collections.Generic.KeyNotFoundException e) { | 560 | } catch (System.Collections.Generic.KeyNotFoundException) { |
561 | m_log.Info("[APPEARANCE] No appearance found for " + user.ToString()); | 561 | m_log.InfoFormat("[APPEARANCE] No appearance found for {0}", user.ToString()); |
562 | } | 562 | } |
563 | return aa; | 563 | return aa; |
564 | } | 564 | } |
@@ -971,7 +971,7 @@ namespace OpenSim.Data.SQLite | |||
971 | private static bool TestTables(SqliteConnection conn, Migration m) | 971 | private static bool TestTables(SqliteConnection conn, Migration m) |
972 | { | 972 | { |
973 | SqliteCommand cmd = new SqliteCommand(userSelect, conn); | 973 | SqliteCommand cmd = new SqliteCommand(userSelect, conn); |
974 | SqliteCommand fcmd = new SqliteCommand(userFriendsSelect, conn); | 974 | // SqliteCommand fcmd = new SqliteCommand(userFriendsSelect, conn); |
975 | SqliteDataAdapter pDa = new SqliteDataAdapter(cmd); | 975 | SqliteDataAdapter pDa = new SqliteDataAdapter(cmd); |
976 | SqliteDataAdapter fDa = new SqliteDataAdapter(cmd); | 976 | SqliteDataAdapter fDa = new SqliteDataAdapter(cmd); |
977 | 977 | ||