Корпоративная библиотека - настройка обработки исключений - PullRequest
4 голосов
/ 04 июня 2010

У меня проблемы с настройкой обработчика исключений так, как я этого хочу. Я хочу записать предупреждения и выше в одном файле (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 голосов
/ 01 октября 2010

Не используйте Enterprise Library.Я бы порекомендовал использовать ELMAH , который обеспечивает более богатый опыт обработки ошибок и значительно проще в настройке ...

...