diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs index e1469d2..9f204e0 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MonoSqlite/MonoSqliteDataStore.cs | |||
@@ -175,8 +175,11 @@ namespace OpenSim.DataStore.MonoSqliteStorage | |||
175 | createdObjects[new LLUUID(objID)].AddPart(prim); | 175 | createdObjects[new LLUUID(objID)].AddPart(prim); |
176 | } | 176 | } |
177 | } | 177 | } |
178 | catch (Exception) | 178 | catch (Exception e) |
179 | { | 179 | { |
180 | |||
181 | MainLog.Instance.Error("DATASTORE", "Failed create prim object, exception and data follows"); | ||
182 | MainLog.Instance.Verbose(e.ToString()); | ||
180 | foreach (DataColumn col in prims.Columns) | 183 | foreach (DataColumn col in prims.Columns) |
181 | { | 184 | { |
182 | MainLog.Instance.Verbose("Col: " + col.ColumnName + " => " + primRow[col]); | 185 | MainLog.Instance.Verbose("Col: " + col.ColumnName + " => " + primRow[col]); |
@@ -184,7 +187,7 @@ namespace OpenSim.DataStore.MonoSqliteStorage | |||
184 | } | 187 | } |
185 | } | 188 | } |
186 | MainLog.Instance.Verbose("DATASTORE", "Sqlite - LoadObjects found " + prims.Rows.Count + " primitives"); | 189 | MainLog.Instance.Verbose("DATASTORE", "Sqlite - LoadObjects found " + prims.Rows.Count + " primitives"); |
187 | return retvals; | 190 | return retvals; |
188 | } | 191 | } |
189 | 192 | ||
190 | public void StoreTerrain(double[,] ter) | 193 | public void StoreTerrain(double[,] ter) |