Say which filename an asset has been dumped to on a successful dump
parent
2ef8e03773
commit
9ff94a3a44
|
@ -223,13 +223,17 @@ namespace OpenSim.Services.AssetService
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
using (FileStream fs = new FileStream(rawAssetId, FileMode.CreateNew))
|
string fileName = rawAssetId;
|
||||||
|
|
||||||
|
using (FileStream fs = new FileStream(fileName, FileMode.CreateNew))
|
||||||
{
|
{
|
||||||
using (BinaryWriter bw = new BinaryWriter(fs))
|
using (BinaryWriter bw = new BinaryWriter(fs))
|
||||||
{
|
{
|
||||||
bw.Write(asset.Data);
|
bw.Write(asset.Data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MainConsole.Instance.OutputFormat("Asset dumped to file {0}", fileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandleShowDigest(string module, string[] args)
|
void HandleShowDigest(string module, string[] args)
|
||||||
|
|
Loading…
Reference in New Issue