xml NLog.config

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 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"
      throwExceptions="true">

  <targets>
    <target xsi:type="File" name="log" fileName="${basedir}\logs\log.txt" />
  </targets>

  <rules>
    <logger name="*" minlevel="Info" writeTo="log" />

  </rules>
</nlog>

以上是关于xml NLog.config的主要内容,如果未能解决你的问题,请参考以下文章

NLog学习笔记二:深入学习

Nlog.config - 只读

解析 nlog.config 时出现 NLog 异常 - 找不到目标:'EventLog'

使用 anotar catel nlog 日志记录时无法过滤类名(在 NLog.config 中)

如何在nlog.config中设置debugEnabled / InfoEnabled

如何将 nlog.config 中的检测密钥外部化?