aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/RestClient.cs
diff options
context:
space:
mode:
authorDiva Canto2009-10-06 08:50:25 -0700
committerDiva Canto2009-10-06 08:50:25 -0700
commite474fc2fdbc424e64ce3a0f249b0d0afa44d86eb (patch)
treeba8dec3ddc6424386a25e7f088ee844355fbe045 /OpenSim/Framework/Communications/RestClient.cs
parentMerge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-e474fc2fdbc424e64ce3a0f249b0d0afa44d86eb.zip
opensim-SC_OLD-e474fc2fdbc424e64ce3a0f249b0d0afa44d86eb.tar.gz
opensim-SC_OLD-e474fc2fdbc424e64ce3a0f249b0d0afa44d86eb.tar.bz2
opensim-SC_OLD-e474fc2fdbc424e64ce3a0f249b0d0afa44d86eb.tar.xz
Corrected words in error message.
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient.cs')
-rw-r--r--OpenSim/Framework/Communications/RestClient.cs4
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