diff options
author | John Hurliman | 2010-06-24 13:43:38 -0700 |
---|---|---|
committer | John Hurliman | 2010-06-24 13:43:38 -0700 |
commit | 6848465ae24f2069c2cc3e67ff317ad2d085f5cb (patch) | |
tree | 5de32ecc585a8457af3a5dc89f1b010412196bb3 /OpenSim/Framework/WebUtil.cs | |
parent | Move loading of parcels to before script start. Scripts using parcel functions (diff) | |
download | opensim-SC_OLD-6848465ae24f2069c2cc3e67ff317ad2d085f5cb.zip opensim-SC_OLD-6848465ae24f2069c2cc3e67ff317ad2d085f5cb.tar.gz opensim-SC_OLD-6848465ae24f2069c2cc3e67ff317ad2d085f5cb.tar.bz2 opensim-SC_OLD-6848465ae24f2069c2cc3e67ff317ad2d085f5cb.tar.xz |
* SimianAssetServiceConnector Delete() was expecting the wrong type of response, reporting false errors
* Fixed a typo in a WebUtil error message
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 94862a6..e20866e 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -114,7 +114,7 @@ namespace OpenSim.Framework | |||
114 | } | 114 | } |
115 | catch (Exception ex) | 115 | catch (Exception ex) |
116 | { | 116 | { |
117 | m_log.Warn("GET from URL " + url + " failed: " + ex.Message); | 117 | m_log.Warn(httpVerb + " on URL " + url + " failed: " + ex.Message); |
118 | errorMessage = ex.Message; | 118 | errorMessage = ex.Message; |
119 | } | 119 | } |
120 | 120 | ||