log4net和log2console的配置

來源:互聯網
上載者:User

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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.