aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-04-30 18:18:21 +0100
committerJustin Clark-Casey (justincc)2010-04-30 18:18:21 +0100
commitd9213297992e531ee4f83d65f8955eef3f07861d (patch)
tree32c4d5b1c0ef94af7bb99bb75a40e97808d9f1b0
parentMerge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-d9213297992e531ee4f83d65f8955eef3f07861d.zip
opensim-SC_OLD-d9213297992e531ee4f83d65f8955eef3f07861d.tar.gz
opensim-SC_OLD-d9213297992e531ee4f83d65f8955eef3f07861d.tar.bz2
opensim-SC_OLD-d9213297992e531ee4f83d65f8955eef3f07861d.tar.xz
take out some debug logging in the sqlite db adaptor
-rw-r--r--OpenSim/Data/SQLite/SQLiteRegionData.cs6
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