nlog配置文件

Posted 要有梦想,即使遥远...

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nlog配置文件相关的知识,希望对你有一定的参考价值。

文件名 nlog.config

内容如下:

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  <targets async="true" maxarchivefiles="2">
    <target  name="log_file" xsi:type="File"  fileName="${basedir}/logs/${date:format=yyyyMMdd}.log"
            layout="[============================${newline}${date} ${appdomain}  ${logger} ${level}${newline}${message}${newline}${exception}]"/>
  </targets>
  <rules>
    <logger name="*" minlevel="trace"  writeTo="log_file"></logger>
  </rules>
</nlog>

以上是关于nlog配置文件的主要内容,如果未能解决你的问题,请参考以下文章

nlog配置文件

NLog 缺少带有异步翻转文件配置的日志条目

如何强制重新加载 NLog 配置文件?

Nlog配置文件

Nlog配置文件

NLog配置文件写入数据库中