5

我的 global.asax 中有一个错误处理程序,如下所示;

  Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
        ' Code that runs when an unhandled error occurs
        Dim ex = Server.GetLastError.GetBaseException
        Dim lastErrorWrapper As HttpException = Server.GetLastError()
        Dim lastError As Exception = lastErrorWrapper

        If lastErrorWrapper.InnerException IsNot Nothing Then
            lastError = lastErrorWrapper.InnerException
        End If

        My.ErrorHandler.LogError( _
            "<BR/><BR/>URL: " & Request.RawUrl & _
            "<BR/><BR/>STACK: " & ex.StackTrace & _
            "<BR/><BR/>SOURCE: " & ex.Source & _
            "<BR/><BR/>MESSAGE: " & ex.Message & _
            "<BR/><BR/>TYPENAME: " & ex.GetType.ToString & _
            "<BR/><BR/>INNER EXCEPTION: " & lastError.ToString & _
            "<BR/><BR/>REFERRER: " & HttpContext.Current.Request.Url.AbsoluteUri & _
            "<BR/><BR/>USER IP: " & Request.ServerVariables("REMOTE_ADDR") & " -- " & Request.ServerVariables("HTTP_USER_AGENT"))
    End Sub

显然,这很好用,只要有错误就会给我发一封电子邮件。但是,对于在文件系统中找不到的任何图像也是如此。它给了我一个“文件不存在”。错误。有没有办法忽略不在磁盘上的图像的日志记录错误?

4

3 回答 3

5

你不能解决 FileNotFoundException 吗?如果异常不应该发生,那么宁愿解决问题而不是抑制它。要处理已知异常,您可以使用以下代码。

if(Server.GetLastError().GetBaseException() is System.Web.HttpException)
{
     //You could check whether the 
     //Server.GetLastError().GetBaseException().Message contains the appropriate message
     Debug.WriteLine("Suppressed FileNotFoundException");
}else
//Log an unhandled exception
于 2012-12-21T10:10:27.490 回答
2
var ex = Context.Error;

if (ex is HttpException)
{
    var httpException = (HttpException)ex;

    if (httpException.GetHttpCode() == (int)HttpStatusCode.NotFound)
        return; // Do nothing 404    
}
于 2012-12-25T17:01:12.763 回答
1

我知道这听起来很简单,或者很简单,或者您可以搜索错误代码,但这就是我所做的 - 简单检查错误是否包含以下消息dose not exist

lastErrorWrapper.ToString().Contains("does not exist.")
于 2012-12-18T08:26:01.150 回答