class 图书馆中的 ELMAH,网络 UI 消费者是否也需要 ELMAH?

ELMAH in a class library, does the web UI consumer need ELMAH too?

我有一个 N 层项目,其中一个项目是错误记录 class 库。为此,我为 Elmah 添加了 Nuget 包。本质上,我正在做的是从抛出异常的方法中获取额外信息,将其打包到我创建的新异常中,并将其提供给 ELMAH。

class 库可以添加到解决方案中的其他项目(服务层,UI)。当没有 HTTP 上下文时,我此时会写入文件。

string details = BuildExceptionString(exception, extraDetails, arguments);
LoggingModuleException ex = new LoggingModuleException(details);

// We may have come from a website, or a backend layer. Handle both.
if (HttpContext.Current != null)
{
    ErrorSignal.FromCurrentContext().Raise(ex); // ELMAH Signaling 
}
else
{
    // Not a web app so no httpcontext
    System.IO.File.WriteAllText(@"C:\MyLogs\Log.txt", ex.Message);
}

我的问题是,当我从 UI (MVC) 层调用此库代码时,我确实有一个 HTTP 上下文,它调用 ELMAH。但是我不知道错误在哪里! 我的 UI 层是否需要 ELMAH 才能调用 Raise() 才能工作?

当我将 ELMAH 添加到我的 class 库时,我没有创建任何 .config 文件。我添加了一个 App.config,其中包含我从另一个问题复制的一些 ELMAH 设置。我已经将它粘贴在下面,但我不能说它完全被 class 库使用...

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<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"/>
  <section name="errorTweet" requirePermission="false" type="Elmah.ErrorTweetSectionHandler, Elmah"/>
</sectionGroup>
</configSections>
<elmah>
<security allowRemoteAccess="yes" />
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="C:\MyLogs\Elmah\" />
</elmah>
<system.web>
<httpModules>
  <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
</httpModules>

<httpHandlers>
  <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
</system.web>
<location path="elmah.axd">
<system.web>
  <authorization>
    <deny users="?"/>
  </authorization>
</system.web>
</location>
</configuration>

我找到了答案。

线索在于,如果您需要一些 appSettings,class 库不会使用它自己的 App.config,而是从调用者的 .config 中提取它们。因此,对于调用此 class 库的 MVC 站点,appSettings 应位于 web.config.

因此,为了让安装了 ELMAH 的 class 库在我们有 http 上下文(来自网站)时使用 ELMAH 登录,网站的 web.config 需要 ELMAH 配置class 图书馆将阅读和使用的信息。

<configuration>
<configSections>
<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>
</configSections>

//...

<system.web>
//...
<httpModules>
  <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
  <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
  <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</httpModules>

//...

</runtime>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
  <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
  <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
  <add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
</modules>
</system.webServer>
<elmah>
<security allowRemoteAccess="false" />
</elmah>
<location path="elmah.axd" inheritInChildApplications="false">
<system.web>
  <httpHandlers>
    <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
  </httpHandlers>
</system.web>
<system.webServer>
  <handlers>
    <add name="ELMAH" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
  </handlers>
</system.webServer>
</location>