抑制 Elmah 中的 MVC 无效路由错误
我想抑制/忽略 Elmah 中的错误:
System.Web.HttpException: The incoming request does not match any route.
我已过滤掉 404 错误,但如果有人输入无效的路由/地址,上述错误仍然会出现。
I would like to suppress/ignore the error in Elmah:
System.Web.HttpException: The incoming request does not match any route.
I have filtered out 404 errors but the above error still comes through if someone types an invalid route/address.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以向 global.asax 添加监听器(简单)或在 web.config 中使用正则表达式。对于 global.asax 添加
可以防止其记录到电子邮件模块,但不记录到数据库模块。您可以执行其中一项或两项。请参阅wiki
can add a listener to global.asax (easy) or use a regex expression in web.config. For global.asax add
The prevents it from being logged to the email module but not the db module. You can do one or both. See wiki