diff options
author | John Hurliman | 2009-10-06 12:15:24 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-06 12:15:24 -0700 |
commit | fa6027aa09190ce50cfabcd3092836f21c99228c (patch) | |
tree | e0ee78f308c1933f6d3aa9c6e80c2fcf4a75d6a2 /OpenSim/Framework | |
parent | * Added missing references to prebuild.xml and commented out the LindenUDP te... (diff) | |
parent | * Removed verbose debug message (diff) | |
download | opensim-SC_OLD-fa6027aa09190ce50cfabcd3092836f21c99228c.zip opensim-SC_OLD-fa6027aa09190ce50cfabcd3092836f21c99228c.tar.gz opensim-SC_OLD-fa6027aa09190ce50cfabcd3092836f21c99228c.tar.bz2 opensim-SC_OLD-fa6027aa09190ce50cfabcd3092836f21c99228c.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim into htb-throttle
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/RestClient.cs b/OpenSim/Framework/Communications/RestClient.cs index 7a73506..d98f47d 100644 --- a/OpenSim/Framework/Communications/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient.cs | |||
@@ -318,11 +318,11 @@ namespace OpenSim.Framework.Communications | |||
318 | HttpWebResponse errorResponse = e.Response as HttpWebResponse; | 318 | HttpWebResponse errorResponse = e.Response as HttpWebResponse; |
319 | if (null != errorResponse && HttpStatusCode.NotFound == errorResponse.StatusCode) | 319 | if (null != errorResponse && HttpStatusCode.NotFound == errorResponse.StatusCode) |
320 | { | 320 | { |
321 | m_log.Warn("[ASSET] Asset not found (404)"); | 321 | m_log.Warn("[REST CLIENT] Resource not found (404)"); |
322 | } | 322 | } |
323 | else | 323 | else |
324 | { | 324 | { |
325 | m_log.Error("[ASSET] Error fetching asset from asset server"); | 325 | m_log.Error("[REST CLIENT] Error fetching resource from server " + _request.Address.ToString()); |
326 | m_log.Debug(e.ToString()); | 326 | m_log.Debug(e.ToString()); |
327 | } | 327 | } |
328 | 328 | ||