aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/AssetServer/RestService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-01-30 18:36:59 +0000
committerJustin Clarke Casey2008-01-30 18:36:59 +0000
commita70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7 (patch)
tree0784c885dc64a188189ad6adbe9c553764452755 /OpenSim/Grid/AssetServer/RestService.cs
parent* Deal with asset requests with malformed guids to the asset server in more u... (diff)
downloadopensim-SC_OLD-a70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7.zip
opensim-SC_OLD-a70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7.tar.gz
opensim-SC_OLD-a70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7.tar.bz2
opensim-SC_OLD-a70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7.tar.xz
* Minor asset server message tweak
Diffstat (limited to 'OpenSim/Grid/AssetServer/RestService.cs')
-rw-r--r--OpenSim/Grid/AssetServer/RestService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Grid/AssetServer/RestService.cs b/OpenSim/Grid/AssetServer/RestService.cs
index ab51b20..13970e7 100644
--- a/OpenSim/Grid/AssetServer/RestService.cs
+++ b/OpenSim/Grid/AssetServer/RestService.cs
@@ -69,7 +69,8 @@ namespace OpenSim.Grid.AssetServer
69 69
70 if (!LLUUID.TryParse(p[0], out assetID)) 70 if (!LLUUID.TryParse(p[0], out assetID))
71 { 71 {
72 MainLog.Instance.Verbose("REST", "GET:/asset ignoring malformed UUID {0}", p[0]); 72 MainLog.Instance.Verbose(
73 "REST", "GET:/asset ignoring request with malformed UUID {0}", p[0]);
73 return result; 74 return result;
74 } 75 }
75 76