change debugging around failed prim loading. I have one prim that doesn't
like loading in my environment, and hopefully this will help figure out what is going onafrisby
parent
e158a45b09
commit
a37275fe40
|
@ -175,8 +175,11 @@ namespace OpenSim.DataStore.MonoSqliteStorage
|
||||||
createdObjects[new LLUUID(objID)].AddPart(prim);
|
createdObjects[new LLUUID(objID)].AddPart(prim);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
MainLog.Instance.Error("DATASTORE", "Failed create prim object, exception and data follows");
|
||||||
|
MainLog.Instance.Verbose(e.ToString());
|
||||||
foreach (DataColumn col in prims.Columns)
|
foreach (DataColumn col in prims.Columns)
|
||||||
{
|
{
|
||||||
MainLog.Instance.Verbose("Col: " + col.ColumnName + " => " + primRow[col]);
|
MainLog.Instance.Verbose("Col: " + col.ColumnName + " => " + primRow[col]);
|
||||||
|
|
Loading…
Reference in New Issue