diff options
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 0217748..997664a 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -778,7 +778,7 @@ namespace OpenSim.Data.SQLite | |||
778 | /// </summary> | 778 | /// </summary> |
779 | public void Commit() | 779 | public void Commit() |
780 | { | 780 | { |
781 | m_log.Debug("[SQLITE]: Starting commit"); | 781 | //m_log.Debug("[SQLITE]: Starting commit"); |
782 | lock (ds) | 782 | lock (ds) |
783 | { | 783 | { |
784 | primDa.Update(ds, "prims"); | 784 | primDa.Update(ds, "prims"); |
@@ -1923,7 +1923,7 @@ namespace OpenSim.Data.SQLite | |||
1923 | /// <param name="items"></param> | 1923 | /// <param name="items"></param> |
1924 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) | 1924 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) |
1925 | { | 1925 | { |
1926 | m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID); | 1926 | //m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID); |
1927 | 1927 | ||
1928 | DataTable dbItems = ds.Tables["primitems"]; | 1928 | DataTable dbItems = ds.Tables["primitems"]; |
1929 | 1929 | ||
@@ -1990,7 +1990,7 @@ namespace OpenSim.Data.SQLite | |||
1990 | sql += ") values (:"; | 1990 | sql += ") values (:"; |
1991 | sql += String.Join(", :", cols); | 1991 | sql += String.Join(", :", cols); |
1992 | sql += ")"; | 1992 | sql += ")"; |
1993 | m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql); | 1993 | //m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql); |
1994 | SqliteCommand cmd = new SqliteCommand(sql); | 1994 | SqliteCommand cmd = new SqliteCommand(sql); |
1995 | 1995 | ||
1996 | // this provides the binding for all our parameters, so | 1996 | // this provides the binding for all our parameters, so |