微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc-3 – 如何在本地测试时禁用elmah发送电子邮件?

当我们将以下行添加到web.config时 –
<add name="ErrorMail" type="Elmah.ErrorMailModule,Elmah" />

Elmah发送有关正在发生的任何异常的电子邮件.但我们希望这只发生在Web服务器上部署的实时站点.而不是当我们在我们的机器上本地测试网站时.当前它正在这样做并在我们在本地测试网站时发送电子邮件.有谁知道我们如何配置它?

解决方法

将电子邮件日志记录添加到Web.Release.config.我的基础Web.config根本不包含任何Elmah东西 – 在使用release进行编译时都会添加它们.如果您编译发布并在本地运行,它将通过电子邮件发送和登录,但常规调试版本不会.

Web.Release.config

<configSections>
      <sectionGroup name="elmah" xdt:Transform="Insert">
          <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>
  </configSections>

  <connectionStrings>
    <clear/>
      <add xdt:Transform="Insert" name="ErrorLogs" connectionString="...." />
  </connectionStrings>

  <elmah xdt:Transform="Insert">
      <errorLog type="Elmah.sqlErrorLog,Elmah" connectionStringName="ErrorLogs" />
      <security allowRemoteAccess="0" />
      <errorMail ...Email options ... />
  </elmah>

    <system.web>
        <compilation xdt:Transform="RemoveAttributes(debug)" />

        <httpModules xdt:Transform="Insert">
            <add name="ErrorLog" type="Elmah.ErrorLogModule,Elmah" />
            <add name="ErrorMail" type="Elmah.ErrorMailModule,Elmah" />
        </httpModules>
    </system.web>

    <system.webServer>
        <modules xdt:Transform="Insert" runAllManagedModulesForAllRequests="true">
            <add name="ErrorLog" type="Elmah.ErrorLogModule,Elmah" />
        </modules>
    </system.webServer>

</configuration>

最后,请注意您的基本Web.config应该具有< configSections>标记在开头,即使它是空的:

Web.config文件

<configuration>
  <configSections /><!-- Placeholder for the release to insert into -->
  ....

原文地址:https://www.jb51.cc/aspnet/245212.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐