如何配置 Log4Net 以忽略 404 错误?
Http 404 错误堵塞了我的日志文件。确实,我需要解决 404 错误,但这样做本身就是一项任务。我将使用 Fiddler 之类的工具来查找 404,但我不希望记录它们。
Http 404 errors are clogging up my log files. It's true I need to resolve the 404 errors, but doing so is a task in and of itself. I will use a tool like Fiddler for hunting down the 404's but I do not want them logged.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
404 作为 System.Web.HttpException 的实例抛出。如果您要在
global.asax
中捕获/记录异常,类似这样的操作应该可以解决问题:如果您使用 Elmah (还有你 应该是),您需要在 web.config 中将其配置为忽略 404。沿着这些思路:
a 404 is thrown as an instance of System.Web.HttpException. If you are trapping/logging exceptions in
global.asax
, something like this should do the trick:If you're using Elmah (and you should be), you need to configure it to ignore 404s in your web.config. Something along these lines: