diff options
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteInventoryStore.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteInventoryStore.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs index 1c60938..4b28795 100644 --- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs | |||
@@ -210,7 +210,7 @@ namespace OpenSim.Data.SQLite | |||
210 | if (inventoryRow == null) | 210 | if (inventoryRow == null) |
211 | { | 211 | { |
212 | if (! add) | 212 | if (! add) |
213 | m_log.ErrorFormat("Interface Misuse: Attempting to Update non-existant inventory item: {0}", item.ID); | 213 | m_log.ErrorFormat("[INVENTORY DB]: Interface Misuse: Attempting to Update non-existant inventory item: {0}", item.ID); |
214 | 214 | ||
215 | inventoryRow = inventoryItemTable.NewRow(); | 215 | inventoryRow = inventoryItemTable.NewRow(); |
216 | fillItemRow(inventoryRow, item); | 216 | fillItemRow(inventoryRow, item); |
@@ -219,7 +219,7 @@ namespace OpenSim.Data.SQLite | |||
219 | else | 219 | else |
220 | { | 220 | { |
221 | if (add) | 221 | if (add) |
222 | m_log.ErrorFormat("Interface Misuse: Attempting to Add inventory item that already exists: {0}", item.ID); | 222 | m_log.ErrorFormat("[INVENTORY DB]: Interface Misuse: Attempting to Add inventory item that already exists: {0}", item.ID); |
223 | 223 | ||
224 | fillItemRow(inventoryRow, item); | 224 | fillItemRow(inventoryRow, item); |
225 | } | 225 | } |