diff options
author | Justin Clark-Casey (justincc) | 2010-04-30 18:18:21 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-04-30 19:29:24 +0100 |
commit | d8b604b550c76610187d929087bce3b08e7018c5 (patch) | |
tree | f0912e9dc338741a45c1ae76a22a0ebd52608cad /OpenSim | |
parent | rename SQLiteNG to SQLite and SQLite to SQLiteLegacy this seems the least evi... (diff) | |
download | opensim-SC-d8b604b550c76610187d929087bce3b08e7018c5.zip opensim-SC-d8b604b550c76610187d929087bce3b08e7018c5.tar.gz opensim-SC-d8b604b550c76610187d929087bce3b08e7018c5.tar.bz2 opensim-SC-d8b604b550c76610187d929087bce3b08e7018c5.tar.xz |
take out some debug logging in the sqlite db adaptor
Diffstat (limited to 'OpenSim')
-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 |