Add size and temporary information to "show asset" command

0.7.2-post-fixes
Justin Clark-Casey (justincc) 2012-01-05 21:05:10 +00:00
parent 7bc03a54e5
commit 19a818017d
1 changed files with 2 additions and 0 deletions

View File

@ -175,6 +175,8 @@ namespace OpenSim.Server.Handlers.Asset
MainConsole.Instance.OutputFormat("Description: {0}", asset.Description);
MainConsole.Instance.OutputFormat("Type: {0} (type number = {1})", (AssetType)asset.Type, asset.Type);
MainConsole.Instance.OutputFormat("Content-type: {0}", asset.Metadata.ContentType);
MainConsole.Instance.OutputFormat("Size: {0} bytes", asset.Data.Length);
MainConsole.Instance.OutputFormat("Temporary: {0}", asset.Temporary ? "yes" : "no");
MainConsole.Instance.OutputFormat("Flags: {0}", asset.Metadata.Flags);
for (i = 0 ; i < 5 ; i++)