Reduced log levels for REST 404 errors to DEBUG

0.8.0.3
Oren Hurvitz 2014-04-03 17:03:58 +03:00
parent 01daa74adf
commit 672bd9fc98
1 changed files with 2 additions and 1 deletions

View File

@ -318,7 +318,8 @@ namespace OpenSim.Framework.Communications
HttpWebResponse errorResponse = e.Response as HttpWebResponse;
if (null != errorResponse && HttpStatusCode.NotFound == errorResponse.StatusCode)
{
m_log.WarnFormat("[REST CLIENT] Resource not found (404): {0}", _request.Address.ToString());
// This is often benign. E.g., requesting a missing asset will return 404.
m_log.DebugFormat("[REST CLIENT] Resource not found (404): {0}", _request.Address.ToString());
}
else
{