diff options
author | Justin Clarke Casey | 2009-02-16 16:22:52 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-16 16:22:52 +0000 |
commit | 8b513beefac4a56caba66fd10d3d0b2bc601cd16 (patch) | |
tree | 596fe3f351a5231742b8f7b2af308573dee9a2c3 /OpenSim/Region/CoreModules | |
parent | From: Alan Webb <awebb@linux.vnet.ibm.com> (diff) | |
download | opensim-SC_OLD-8b513beefac4a56caba66fd10d3d0b2bc601cd16.zip opensim-SC_OLD-8b513beefac4a56caba66fd10d3d0b2bc601cd16.tar.gz opensim-SC_OLD-8b513beefac4a56caba66fd10d3d0b2bc601cd16.tar.bz2 opensim-SC_OLD-8b513beefac4a56caba66fd10d3d0b2bc601cd16.tar.xz |
* minor: print out status messages at start and end of inventory archive loading and saving
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs index 7660546..786cbeb 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | |||
@@ -160,7 +160,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
160 | string invPath = cmdparams[4]; | 160 | string invPath = cmdparams[4]; |
161 | string loadPath = (cmdparams.Length > 5 ? cmdparams[5] : DEFAULT_INV_BACKUP_FILENAME); | 161 | string loadPath = (cmdparams.Length > 5 ? cmdparams[5] : DEFAULT_INV_BACKUP_FILENAME); |
162 | 162 | ||
163 | m_log.InfoFormat( | ||
164 | "[INVENTORY ARCHIVER]: Loading archive {0} to inventory path {1} for {2} {3}", | ||
165 | loadPath, invPath, firstName, lastName); | ||
166 | |||
163 | DearchiveInventory(firstName, lastName, invPath, loadPath); | 167 | DearchiveInventory(firstName, lastName, invPath, loadPath); |
168 | |||
169 | m_log.InfoFormat( | ||
170 | "[INVENTORY ARCHIVER]: Loaded archive {0} for {1} {2}", | ||
171 | loadPath, firstName, lastName); | ||
164 | } | 172 | } |
165 | 173 | ||
166 | /// <summary> | 174 | /// <summary> |
@@ -181,7 +189,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
181 | string invPath = cmdparams[4]; | 189 | string invPath = cmdparams[4]; |
182 | string savePath = (cmdparams.Length > 5 ? cmdparams[5] : DEFAULT_INV_BACKUP_FILENAME); | 190 | string savePath = (cmdparams.Length > 5 ? cmdparams[5] : DEFAULT_INV_BACKUP_FILENAME); |
183 | 191 | ||
192 | m_log.InfoFormat( | ||
193 | "[INVENTORY ARCHIVER]: Saving archive {0} from inventory path {1} for {2} {3}", | ||
194 | savePath, invPath, firstName, lastName); | ||
195 | |||
184 | ArchiveInventory(firstName, lastName, invPath, savePath); | 196 | ArchiveInventory(firstName, lastName, invPath, savePath); |
197 | |||
198 | m_log.InfoFormat( | ||
199 | "[INVENTORY ARCHIVER]: Saved archive {0} for {1} {2}", | ||
200 | savePath, firstName, lastName); | ||
185 | } | 201 | } |
186 | 202 | ||
187 | /// <summary> | 203 | /// <summary> |