parent
bdf95e54a2
commit
72be38f7ae
|
@ -293,8 +293,16 @@ namespace OpenSim.Framework.Communications
|
||||||
}
|
}
|
||||||
catch (WebException e)
|
catch (WebException e)
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("[ASSET] Error fetching asset from asset server");
|
HttpWebResponse errorResponse = e.Response as HttpWebResponse;
|
||||||
|
if (null != errorResponse && HttpStatusCode.NotFound == errorResponse.StatusCode)
|
||||||
|
{
|
||||||
|
m_log.Warn("[ASSET] Asset not found (404)");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_log.Error("[ASSET] Error fetching asset from asset server");
|
||||||
m_log.Debug(e.ToString());
|
m_log.Debug(e.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue