企业库 - 配置异常处理

时间:2010-06-04 10:23:48

标签: c# frameworks enterprise

我在按照我想要的方式配置异常处理程序时遇到了一些问题。我想要的是将警告及以上内容记录在一个文件(errors.txt)中,并将所有内容(包括警告和错误)记录在名为all.txt的文件中。

问题是我无法在all.txt中记录错误,我只在errors.txt中找到一个条目,并在其中找到一个名为{guid} all.txt的单独文件。

任何人都可以看到我做错了什么并帮助我走上正轨吗?

<exceptionHandling>  <exceptionPolicies>
<add name="Default">
  <exceptionTypes>
    <add name="All Exceptions" type="System.Exception, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
        postHandlingAction="None">
      <exceptionHandlers>
        <add name="Logging Exception Handler" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.LoggingExceptionHandler, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
            logCategory="Errors" eventId="100" severity="Error" title="Enterprise Library Exception Handling"
            formatterType="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.TextExceptionFormatter, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling"
            priority="0" />
      </exceptionHandlers>
    </add>
  </exceptionTypes>
</add>  </exceptionPolicies></exceptionHandling>

<loggingConfiguration name="" tracingEnabled="false" defaultCategory="All" evertImpersonation="false">  <listeners>
<add name="All Listener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    fileName="Logs\All.txt" footer="" formatter="All Formatter"
    header="" rollInterval="Day" maxArchivedFiles="7" />
<add name="Errors Listener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    fileName="Logs\Errors.txt" formatter="Errors formatter" rollInterval="Day"
    maxArchivedFiles="7" filter="Warning" />  </listeners>  <formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    template="{timestamp(local:dd.MM.yyyy hh:mm:ss.fff)} - {severity} - {message}"
    name="All Formatter" />
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    template="Timestamp: {timestamp(local:dd.MM.yyyy hh:mm:ss.fff)}{newline}&#xA;Message: {message}{newline}&#xA;Category: {category}{newline}&#xA;Priority: {priority}{newline}&#xA;EventId: {eventid}{newline}&#xA;Severity: {severity}{newline}&#xA;Title:{title}{newline}&#xA;Machine: {localMachine}{newline}&#xA;App Domain: {localAppDomain}{newline}&#xA;ProcessId: {localProcessId}{newline}&#xA;Process Name: {localProcessName}{newline}&#xA;Thread Name: {threadName}{newline}&#xA;Win32 ThreadId:{win32ThreadId}{newline}&#xA;Extended Properties: {dictionary({key} - {value}{newline})}"
    name="Errors formatter" />  </formatters>  <logFilters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Filters.LogEnabledFilter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=null"
    enabled="true" name="Logging Enabled Filter" />  </logFilters>  <categorySources>
<add switchValue="All" name="All">
  <listeners>
    <add name="All Listener" />
  </listeners>
</add>
<add switchValue="Warning" name="Errors">
  <listeners>
    <add name="Errors Listener" />
    <add name="All Listener" />
  </listeners>
</add>  </categorySources>  <specialSources>
<allEvents switchValue="Off" name="All Events" />
<notProcessed switchValue="Off" name="Unprocessed Category" />
<errors switchValue="Off" name="Logging Errors &amp; Warnings" />  </specialSources></loggingConfiguration>

1 个答案:

答案 0 :(得分:0)

不要使用Enterprise Library。我建议使用ELMAH,它提供更丰富的错误处理体验,并且更容易配置......