diff options
Diffstat (limited to 'OpenSim/Data/SQLite')
-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 85368ab..fe6e919 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -769,7 +769,7 @@ namespace OpenSim.Data.SQLite | |||
769 | /// </summary> | 769 | /// </summary> |
770 | public void Commit() | 770 | public void Commit() |
771 | { | 771 | { |
772 | m_log.Debug("[SQLITE]: Starting commit"); | 772 | //m_log.Debug("[SQLITE]: Starting commit"); |
773 | lock (ds) | 773 | lock (ds) |
774 | { | 774 | { |
775 | primDa.Update(ds, "prims"); | 775 | primDa.Update(ds, "prims"); |
@@ -1914,7 +1914,7 @@ namespace OpenSim.Data.SQLite | |||
1914 | /// <param name="items"></param> | 1914 | /// <param name="items"></param> |
1915 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) | 1915 | public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) |
1916 | { | 1916 | { |
1917 | m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID); | 1917 | //m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID); |
1918 | 1918 | ||
1919 | DataTable dbItems = ds.Tables["primitems"]; | 1919 | DataTable dbItems = ds.Tables["primitems"]; |
1920 | 1920 | ||
@@ -1981,7 +1981,7 @@ namespace OpenSim.Data.SQLite | |||
1981 | sql += ") values (:"; | 1981 | sql += ") values (:"; |
1982 | sql += String.Join(", :", cols); | 1982 | sql += String.Join(", :", cols); |
1983 | sql += ")"; | 1983 | sql += ")"; |
1984 | m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql); | 1984 | //m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql); |
1985 | SqliteCommand cmd = new SqliteCommand(sql); | 1985 | SqliteCommand cmd = new SqliteCommand(sql); |
1986 | 1986 | ||
1987 | // this provides the binding for all our parameters, so | 1987 | // this provides the binding for all our parameters, so |