Elmah 忽略 ErrorFilter

发布于 2024-11-16 13:27:53 字数 1063 浏览 2 评论 0原文

我试图让 elmah 忽略 404 错误,但它们不断出现。我正在使用 asp.net mvc 3。

我有

  <elmah>
    <errorLog type="Elmah.SqlErrorLog, Elmah" logPath="~/App_Data" connectionStringName="ConnectionString" applicationName="/" />
      <errorFilter>
          <test>
              <equal binding="HttpStatusCode" value="404" type="Int32" />
          </test>
      </errorFilter>
      <security allowRemoteAccess="0" />
  </elmah>

   <sectionGroup name="elmah">
      <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
      <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
      <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
      <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
    </sectionGroup>

我错过了什么吗?我使用 nuget 生成 web.config,所以我认为所有内容都在 web.config 中。

I am trying to have elmah ignore 404 errors but they keep showing up. I am using asp.net mvc 3.

I have

  <elmah>
    <errorLog type="Elmah.SqlErrorLog, Elmah" logPath="~/App_Data" connectionStringName="ConnectionString" applicationName="/" />
      <errorFilter>
          <test>
              <equal binding="HttpStatusCode" value="404" type="Int32" />
          </test>
      </errorFilter>
      <security allowRemoteAccess="0" />
  </elmah>

   <sectionGroup name="elmah">
      <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
      <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
      <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
      <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
    </sectionGroup>

Am I missing something? I used nuget to generate the web.config so I would think everything is in the web.config.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九公里浅绿 2024-11-23 13:27:53

可能是像这篇文章中那样的模块顺序问题?

ELMAH - 过滤 404 错误

Possibly an issue with module order like in this post?

ELMAH - Filtering 404 Errors

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文