diff options
author | Justin Clarke Casey | 2008-01-30 18:36:59 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-30 18:36:59 +0000 |
commit | a70e9c8c2ccfb3824be3165a3c2c9fbf72c2d2a7 (patch) | |
tree | 0784c885dc64a188189ad6adbe9c553764452755 | |
parent | * Deal with asset requests with malformed guids to the asset server in more u... (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Grid/AssetServer/RestService.cs | 3 |
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 | ||