aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-06-14 00:51:18 +0100
committerJustin Clark-Casey (justincc)2011-06-14 00:51:18 +0100
commit603dbea190de26dce5160f5ab9730ffc1375ec26 (patch)
tree8499e06035668095b16aa5d773ec050229fb3e6a /OpenSim/Region/CoreModules/Avatar/Inventory/Archiver
parentAdded SimulatorFeatures capability. Thanks Aurora devs for the bootstrap on t... (diff)
downloadopensim-SC_OLD-603dbea190de26dce5160f5ab9730ffc1375ec26.zip
opensim-SC_OLD-603dbea190de26dce5160f5ab9730ffc1375ec26.tar.gz
opensim-SC_OLD-603dbea190de26dce5160f5ab9730ffc1375ec26.tar.bz2
opensim-SC_OLD-603dbea190de26dce5160f5ab9730ffc1375ec26.tar.xz
tweak messages. Make verbose inventory item save message give the item name as well as item id and asset id
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Inventory/Archiver')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs
index c2ad079..36ecb3b 100644
--- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs
@@ -147,7 +147,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver
147 protected void SaveInvItem(InventoryItemBase inventoryItem, string path, Dictionary<string, object> options, IUserAccountService userAccountService) 147 protected void SaveInvItem(InventoryItemBase inventoryItem, string path, Dictionary<string, object> options, IUserAccountService userAccountService)
148 { 148 {
149 if (options.ContainsKey("verbose")) 149 if (options.ContainsKey("verbose"))
150 m_log.InfoFormat("[INVENTORY ARCHIVER]: Saving item {0} with asset {1}", inventoryItem.ID, inventoryItem.AssetID); 150 m_log.InfoFormat(
151 "[INVENTORY ARCHIVER]: Saving item {0} {1} with asset {2}",
152 inventoryItem.ID, inventoryItem.Name, inventoryItem.AssetID);
151 153
152 string filename = path + CreateArchiveItemName(inventoryItem); 154 string filename = path + CreateArchiveItemName(inventoryItem);
153 155