diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetTransactions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs index 581e300..f23441d 100644 --- a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs +++ b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs | |||
@@ -287,7 +287,9 @@ namespace OpenSim.Framework.Communications.Cache | |||
287 | 287 | ||
288 | if (m_dumpAssetToFile) | 288 | if (m_dumpAssetToFile) |
289 | { | 289 | { |
290 | SaveAssetToFile("testudpupload" + Util.RandomClass.Next(1, 1000) + ".dat", this.Asset.Data); | 290 | DateTime now = DateTime.Now; |
291 | string filename = String.Format("{6}_{7}_{0:d2}{1:d2}{2:d2}_{3:d2}{4:d2}{5:d2}", now.Year, now.Month, now.Day, now.Hour, now.Minute, now.Second, Asset.Name, Asset.Type ); | ||
292 | SaveAssetToFile(filename, this.Asset.Data); | ||
291 | } | 293 | } |
292 | } | 294 | } |
293 | 295 | ||