2009-08-24 74 views

回答

2

我們這樣做是這樣的:

 Logger.Write("Message or exception", "Catergory"); 

凡在你的情況的類別將錯誤,調試或警告。

然後在您的配置文件中的錯誤:

<listeners> 
    <add fileName="Errors.log" footer="----------------------------------------" 
    header="----------------------------------------" rollFileExistsBehavior="Overwrite" 
    rollInterval="None" rollSizeKB="0" timeStampPattern="yyyy-MM-dd" 
    listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 
    traceOutputOptions="None" filter="All" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 
    name="Errors" /> 
</listeners> 


<categorySources> 
    <add switchValue="All" name="Errors"> 
    <listeners> 
     <add name="Errors" /> 
    </listeners> 
    </add> 
</categorySources> 

你需要爲每個類別

0

您可以爲此實現過濾器,或者使用不同的appender寫入過濾器。

相關問題