diff options
Diffstat (limited to 'OpenSim/Tests/Common')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs b/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs index ce116f2..a444d91 100644 --- a/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs | |||
@@ -154,7 +154,13 @@ namespace OpenSim.Tests.Common.Mock | |||
154 | m_folders.Remove(folderId); | 154 | m_folders.Remove(folderId); |
155 | } | 155 | } |
156 | 156 | ||
157 | public void addInventoryItem(InventoryItemBase item) { m_items[item.ID] = item; } | 157 | public void addInventoryItem(InventoryItemBase item) |
158 | { | ||
159 | m_log.DebugFormat( | ||
160 | "[MOCK INV DB]: Adding inventory item {0} {1} in {2}", item.Name, item.ID, item.Folder); | ||
161 | |||
162 | m_items[item.ID] = item; | ||
163 | } | ||
158 | 164 | ||
159 | public void updateInventoryItem(InventoryItemBase item) { addInventoryItem(item); } | 165 | public void updateInventoryItem(InventoryItemBase item) { addInventoryItem(item); } |
160 | 166 | ||