码迷,mamicode.com
首页 > 其他好文 > 详细

Nlog

时间:2014-12-13 10:47:43      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   for   

使用案例:

配置文件:

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <configuration>
 3   <configSections>
 4     <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
 5   </configSections>
 6   <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 7     <targets>
 8       <target name="file" xsi:type="File" fileName="${shortdate}.txt"
 9               layout="${date:format=HH\:mm\:ss}-${stacktrace}-${message}"/>
10     </targets>
11     <rules>
12       <logger name="*" minlevel="Error" writeTo="file"/>
13     </rules>
14   </nlog>
15 </configuration>

调用:

1 string message = "这是一个异常消息";
2 NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger();
3 logger.Error(message);

bubuko.com,布布扣

相关介绍链接:

http://nlog-project.org/

https://github.com/nlog/nlog/wiki/Configuration-file

http://www.cnblogs.com/dflying/archive/2006/12/06/584426.html(翻译版)

 

Nlog

标签:style   blog   http   io   ar   color   使用   sp   for   

原文地址:http://www.cnblogs.com/Ares945/p/nlog.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!