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

backup-NLog

时间:2020-06-27 09:45:48      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:layout   ack   current   mes   occurred   date   level   tar   eve   

 

 

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
 3       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 4 
 5   <targets>
 6     <!-- ${basedir} ${appdomain} ${shortdate} -->
 7     <target name="fileLog" xsi:type="File"
 8             fileName="${basedir}/log/${appdomain}.log"
 9             archiveFileName="${basedir}/log/${appdomain}.{###}.log"
10             archiveEvery="Day"
11             archiveNumbering="Rolling"
12             concurrentWrites="false"
13             keepFileOpen="false"
14             maxArchiveFiles="32"
15             layout="${longdate} - ${logger} [${level}] - ${message} ${onexception:Exception Occurred\: ${exception:format=type,message,method
16                 :maxInnerExceptionLevel=5
17                 :innerFormat=shortType,message,method}}"/>
18   </targets>
19 
20   <rules>
21     <!-- <rule name="*" minlevel="Debug" writeTo="fileLog"/> -->
22     <rule name="*" minlevel="Debug" writeTo="fileLog"/>
23   </rules>
24 
25 </nlog>

 

 

 

 

 

--------- THE END ---------

 

backup-NLog

标签:layout   ack   current   mes   occurred   date   level   tar   eve   

原文地址:https://www.cnblogs.com/shadow-abyss/p/13197249.html

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