安装 |
Nuget获取 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
配置寻找 |
会自动寻找在应用程序目录下的NLog.config(大小写敏感) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
如何配置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" xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" autoReload="true" throwExceptions="false" internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log"> <targets> <target xsi:type="File" name="debug1" fileName="..\..\Layout\CsvLayout.config"/> </targets> <rules> <logger name="*" level="Debug" writeTo="debug1" /> </rules> </nlog> 配置主要有两个节点
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
应用程序应用 |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
FAQ |
如还需要更多配置,请看https://nlog-project.org/config/?tab=targets |
整理了这么一张图,需要学习的主要其实就是配置文件
稍后还会有一些管饭教程的翻译发上来
:)