2010-06-04 100 views
4

我按照需要配置异常处理程序时遇到了一些问题。我想要的是在一个名为all.txt的文件中将警告和上面的内容记录在一个文件(errors.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> 

回答

0

请勿使用企业库。我建议使用ELMAH这提供了更丰富的错误处理经验,并且大大简化了配置...

+0

+1投票表示不使用Enterpise Library,但我没有使用ELMAH,所以我不能关于这个的评论。 – 2011-06-27 00:33:09

+0

@Jason:请说明为什么你禁止企业库?我已经在我的解决方案中实现了它,它的工作原理相当不错.. – 2012-11-01 12:28:52

+0

免责声明:自从我使用它并且发布我的原始评论以来,这已经很长时间了,所以这可能不再有效。我不喜欢企业图书馆的主要原因是由于正确设置它的复杂性。它看起来像很多额外的配置,没有太多的收获。你已经可以用内置跟踪做很多事情,如果你需要一般可以为你的项目建立一些专门定制的好抽象,而不是EntLib人们认为你应该使用它。一些EntLib的记录器虽然可能有用。 – 2012-11-04 21:39:00