1、使用ILog對象記錄日誌
var log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
log.Warn("error", new Exception("異常!"));
前提:
1)引用log4net.dll
2)命名空間前加:
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
3)App.config的configuration節點下的第一個節點必須為configSection,為:
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
</configSections>
4)App.config的configuration節點下的增加:
<log4net>
<root>
<appender-ref ref="UdpAppender"/>
</root>
<appender name="UdpAppender" type="log4net.Appender.UdpAppender">
<remoteAddress value="127.0.0.1" />
<remotePort value="7071" />
<layout type="log4net.Layout.XmlLayoutSchemaLog4j" />
</appender>
</log4net>
其中root中的UdpAppender必須與appender的name一致。“127.0.0.1”不能指定為“localhost”,可以指定為原生IP。
2、開啟log2console程式
增加一個Receiver,指定為UDP,其它的預設即可。
當記錄日誌的時候,log2console就會顯示出日誌了。
如果沒有顯示日誌,刪除當前的Receiver,重新添加一個。
該Receiver的連接埠應該與配置中的一致,這裡都是7071。
3、
log4net bin and src
log2console bin(從源碼產生,修複在一個中文環境下的bug,來自網路)
log2console bin and src