* Removed plenty more untagged console messages. Everything now has shiny groups. :)

This commit is contained in:
Adam Frisby
2007-10-22 22:37:39 +00:00
parent 3e5fcf90aa
commit 3143768468
8 changed files with 21 additions and 15 deletions

View File

@@ -98,11 +98,19 @@ namespace OpenSim.DataStore.MonoSqlite
try
{
shapeDa.Fill(ds.Tables["primshapes"]);
}
catch (Exception)
{
MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes table");
}
try
{
terrainDa.Fill(ds.Tables["terrain"]);
}
catch (Exception)
{
MainLog.Instance.Verbose("DATASTORE", "Caught fill error on primshapes or terrain table");
MainLog.Instance.Verbose("DATASTORE", "Caught fill error on terrain table");
}
return;
}