有没有办法使用异常消息过滤elma中的异常?
示例:
“System.Web.HttpException:请求超时。”我不想过滤掉所有HttpException,只过滤掉超时请求
“System.Web.HttpException:超出了最大请求长度。”
我不想做的是为此编写自己的代码。那么可以使用buildin-web.config配置吗?
谢谢!
答案 0 :(得分:11)
是的,你可以。只需使用正则表达式来查询消息。有关如何比较异常消息的详细信息,请参阅下面的示例。
<errorFilter>
<test>
<!-- http://groups.google.com/group/elmah/t/cbe82cee76cc6321 -->
<and>
<is-type binding='Exception'
type='System.Web.HttpException, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' />
<regex binding='Exception.Message'
pattern='invalid\s+viewstate'
caseSensitive='false' />
<regex binding='Context.Request.UserAgent'
pattern='Trident/4(\.[0-9])*'
caseSensitive='false' />
</and>
</test>
</errorFilter>
答案 1 :(得分:7)
您可以在global.asax中设置事件处理程序,以避免丑陋的配置正则表达式设置:
void ErrorMail_Filtering(object sender, Elmah.ExceptionFilterEventArgs e)
{
if (e.Exception.Message.Contains("Request timed out"))
e.Dismiss();
}
请参阅Error Filtering。