remove some more rote Verbose strings, leave only ones that actually have something

interesting to say
afrisby
Sean Dague 2007-08-31 13:03:39 +00:00
parent f388a47254
commit 2163fc75eb
1 changed files with 0 additions and 3 deletions

View File

@ -61,7 +61,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage
ds.Tables.Add(createPrimTable());
setupPrimCommands(primDa, conn);
primDa.Fill(ds.Tables["prims"]);
MainLog.Instance.Verbose("DATASTORE", "Populated Prim Definitions");
ds.Tables.Add(createShapeTable());
setupShapeCommands(shapeDa, conn);
@ -78,7 +77,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage
{
MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes table");
}
MainLog.Instance.Verbose("DATASTORE", "Populated Prim Shapes");
return;
}
@ -186,7 +184,6 @@ namespace OpenSim.DataStore.MonoSqliteStorage
}
}
}
MainLog.Instance.Verbose("DATASTORE", "Sqlite - LoadObjects found " + prims.Rows.Count + " primitives");
return retvals;
}