diff options
-rw-r--r-- | OpenSim/Services/AssetService/AssetService.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Services/AssetService/AssetService.cs b/OpenSim/Services/AssetService/AssetService.cs index 03b660d..851b7b4 100644 --- a/OpenSim/Services/AssetService/AssetService.cs +++ b/OpenSim/Services/AssetService/AssetService.cs | |||
@@ -254,11 +254,11 @@ namespace OpenSim.Services.AssetService | |||
254 | 254 | ||
255 | int i; | 255 | int i; |
256 | 256 | ||
257 | MainConsole.Instance.Output(String.Format("Name: {0}", asset.Name)); | 257 | MainConsole.Instance.OutputFormat("Name: {0}", asset.Name); |
258 | MainConsole.Instance.Output(String.Format("Description: {0}", asset.Description)); | 258 | MainConsole.Instance.OutputFormat("Description: {0}", asset.Description); |
259 | MainConsole.Instance.Output(String.Format("Type: {0} (type number = {1})", (AssetType)asset.Type, asset.Type)); | 259 | MainConsole.Instance.OutputFormat("Type: {0} (type number = {1})", (AssetType)asset.Type, asset.Type); |
260 | MainConsole.Instance.Output(String.Format("Content-type: {0}", asset.Metadata.ContentType)); | 260 | MainConsole.Instance.OutputFormat("Content-type: {0}", asset.Metadata.ContentType); |
261 | MainConsole.Instance.Output(String.Format("Flags: {0}", asset.Metadata.Flags.ToString())); | 261 | MainConsole.Instance.OutputFormat("Flags: {0}", asset.Metadata.Flags); |
262 | 262 | ||
263 | for (i = 0 ; i < 5 ; i++) | 263 | for (i = 0 ; i < 5 ; i++) |
264 | { | 264 | { |