take out some debug logging in the sqlite db adaptor

slimupdates
Justin Clark-Casey (justincc) 2010-04-30 18:18:21 +01:00
parent 89e79c1133
commit d921329799
1 changed files with 3 additions and 3 deletions

View File

@ -778,7 +778,7 @@ namespace OpenSim.Data.SQLite
/// </summary> /// </summary>
public void Commit() public void Commit()
{ {
m_log.Debug("[SQLITE]: Starting commit"); //m_log.Debug("[SQLITE]: Starting commit");
lock (ds) lock (ds)
{ {
primDa.Update(ds, "prims"); primDa.Update(ds, "prims");
@ -1923,7 +1923,7 @@ namespace OpenSim.Data.SQLite
/// <param name="items"></param> /// <param name="items"></param>
public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items) public void StorePrimInventory(UUID primID, ICollection<TaskInventoryItem> items)
{ {
m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID); //m_log.InfoFormat("[REGION DB]: Entered StorePrimInventory with prim ID {0}", primID);
DataTable dbItems = ds.Tables["primitems"]; DataTable dbItems = ds.Tables["primitems"];
@ -1990,7 +1990,7 @@ namespace OpenSim.Data.SQLite
sql += ") values (:"; sql += ") values (:";
sql += String.Join(", :", cols); sql += String.Join(", :", cols);
sql += ")"; sql += ")";
m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql); //m_log.DebugFormat("[SQLITE]: Created insert command {0}", sql);
SqliteCommand cmd = new SqliteCommand(sql); SqliteCommand cmd = new SqliteCommand(sql);
// this provides the binding for all our parameters, so // this provides the binding for all our parameters, so