aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/AssetServer/RestService.cs
diff options
context:
space:
mode:
authorBrian McBee2007-11-20 03:47:47 +0000
committerBrian McBee2007-11-20 03:47:47 +0000
commit61bc26226f79cf5376e3833ae69cf76be10aa8c1 (patch)
tree48daab4711fcd3df9890525b4c5019f619de90f6 /OpenSim/Grid/AssetServer/RestService.cs
parentthere is no real reason to write this value back to estate settings, (diff)
downloadopensim-SC_OLD-61bc26226f79cf5376e3833ae69cf76be10aa8c1.zip
opensim-SC_OLD-61bc26226f79cf5376e3833ae69cf76be10aa8c1.tar.gz
opensim-SC_OLD-61bc26226f79cf5376e3833ae69cf76be10aa8c1.tar.bz2
opensim-SC_OLD-61bc26226f79cf5376e3833ae69cf76be10aa8c1.tar.xz
Turned on more verbosity to try to debug assetserver failures
Diffstat (limited to 'OpenSim/Grid/AssetServer/RestService.cs')
-rw-r--r--OpenSim/Grid/AssetServer/RestService.cs4
1 files changed, 2 insertions, 2 deletions
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
35 isTexture = true; 35 isTexture = true;
36 } 36 }
37 37
38 38 MainLog.Instance.Verbose("REST", "GET:/asset fetch param={0} UUID={1}", param, assetID);
39 AssetBase asset = m_assetProvider.FetchAsset(assetID); 39 AssetBase asset = m_assetProvider.FetchAsset(assetID);
40 if (asset != null) 40 if (asset != null)
41 { 41 {
42 MainLog.Instance.Debug("REST", "GET:/asset found {0}, {1}", assetID, asset.Name); 42 MainLog.Instance.Verbose("REST", "GET:/asset found {0}, {1}", assetID, asset.Name);
43 43
44 XmlSerializer xs = new XmlSerializer(typeof (AssetBase)); 44 XmlSerializer xs = new XmlSerializer(typeof (AssetBase));
45 MemoryStream ms = new MemoryStream(); 45 MemoryStream ms = new MemoryStream();