mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 10:46:00 +08:00
Reduced log levels for REST 404 errors to DEBUG
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user