From 61bc26226f79cf5376e3833ae69cf76be10aa8c1 Mon Sep 17 00:00:00 2001
From: Brian McBee
Date: Tue, 20 Nov 2007 03:47:47 +0000
Subject: Turned on more verbosity to try to debug assetserver failures

---
 OpenSim/Grid/AssetServer/RestService.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'OpenSim')

diff --git a/OpenSim/Grid/AssetServer/RestService.cs b/OpenSim/Grid/AssetServer/RestService.cs
index 4ed1e67..01b2e2e 100644
--- a/OpenSim/Grid/AssetServer/RestService.cs
+++ b/OpenSim/Grid/AssetServer/RestService.cs
@@ -35,11 +35,11 @@ namespace OpenSim.Grid.AssetServer
                             isTexture = true;
                     }
 
-
+                    MainLog.Instance.Verbose("REST", "GET:/asset fetch param={0} UUID={1}", param, assetID);
                     AssetBase asset = m_assetProvider.FetchAsset(assetID);
                     if (asset != null)
                     {
-                        MainLog.Instance.Debug("REST", "GET:/asset found {0}, {1}", assetID, asset.Name);
+                        MainLog.Instance.Verbose("REST", "GET:/asset found {0}, {1}", assetID, asset.Name);
 
                         XmlSerializer xs = new XmlSerializer(typeof (AssetBase));
                         MemoryStream ms = new MemoryStream();
-- 
cgit v1.1