NLOG配置

<?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">

<!--
See https://github.com/nlog/nlog/wiki/Configuration-file
for information on customizing logging rules and outputs.
-->
<targets>
<!-- add your targets here -->

<!--
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}" />
-->
<!--说明:
xsi:type="File"指定输出到文件类型;
name ="file_info"指定target的名字;
fileName="${basedir}/Logs/NlogBlog_${level}_${shortdate}.txt"指定输出文件的具体名。
其中${basedir}的意思是程序所在的路径; ${level}的意思是日志的等级; ${shortdate}的意思是日期(具体到日)"
layout="${longdate} ${message}"指定输出文件内容的样式(可自由定义);
其中${longdate}的意思是日期(具体到毫秒),${message}是你具体要输出的内容。
-->
<target xsi:type="File" name ="file_info" fileName="${basedir}/Logs/NlogBuyLimit_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_info1" fileName="${basedir}/Logs/NlogBuyStop_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_info2" fileName="${basedir}/Logs/NlogSellLimit_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_info3" fileName="${basedir}/Logs/NlogSellStop_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>

<target xsi:type="File" name ="file_debug" fileName="${basedir}/Logs/NlogBlog_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_warn" fileName="${basedir}/Logs/NlogBlog_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_error" fileName="${basedir}/Logs/NlogBlog_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>
<target xsi:type="File" name ="file_trace" fileName="${basedir}/Logs/NlogBlog_${level}_${shortdate}.txt"
layout="${longdate} ${message}" encoding="UTF-8"/>

</targets>

<rules>
<!-- add your logging rules here -->

<!--
<logger name="*" minlevel="Trace" writeTo="f" />
-->
<logger name="A" levels="Info" writeTo="file_info"/>
<logger name="B" levels="Info" writeTo="file_info1"/>
<logger name="C" levels="Info" writeTo="file_info2"/>
<logger name="D" levels="Info" writeTo="file_info3"/>
<logger name="*" levels="Debug" writeTo="file_debug"/>
<logger name="*" levels="Warn" writeTo="file_warn"/>
<logger name="*" levels="Error" writeTo="file_error"/>
<logger name="*" levels="Trace" writeTo="file_trace"/>
</rules>
</nlog>

private static NLog.Logger BuyLimitLog = NLog.LogManager.GetLogger("A");

时间: 2024-11-05 13:43:15

NLOG配置的相关文章

ASP.NET Core根据环境切换NLog配置

1.新建NLog配置文件,名称分别为nlog.config和nlog.debug.config <?xml version="1.0"?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true" inter

NetCore中使用NLog配置详解

<?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" autoReload="true" throwConfigExceptions=&qu

Nlog 配置总结

Writes log messages to one or more files. Since NLog 4.3 the ${basedir} isn't needed anymore for relative paths. Supported in .NET, Silverlight, Compact Framework and Mono. Configuration Syntax <targets> <target xsi:type="File" name=&qu

Nlog配置实例

  彩色Console target <?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> <target nam

nlog 配置

using NLog; using NLog.Config; using NLog.Targets; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dben.CommonLib { public static class NLogDefaultConfig { public static vo

NLog写入Mongo日志配置

Web网站中引入了NLog日志,日志记录在Mongo数据库中,经过两天的简单学习,现简要记录说明下: 首先贴出NLog的学习地址: https://github.com/NLog/NLog/wiki/Tutorial ,使用的NLog版本为:4.5+ 以及此次项目中的NLog配置文档 :(NLog.Config) <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www

Net Core 2.1 日志记录框架NLog+Mysql配置

NLog是什么? 这里还是简单介绍一下吧,为了让小白也知道.NLog是一个灵活的免费日志记录平台,适用于各种.NET平台,包括.NET Core.NLog可以通过简单地配置就可以可以很方便的写入多个日志仓库中(数据库,文件,控制台). NLog在Net Core中怎么用啊? 用之前你得新建一个asp.net core项目吧.这里以net core api为例吧.如下图所示是博主刚刚创建的net core api项目. 建好项目之后干什么呢.当然得添加引用了.你可以随心所欲的使用Nuget或者命令

asp.net5中使用NLog进行日志记录

asp.net5中提供了性能强大的日志框架,本身也提供了几种日志记录方法,比如记录到控制台或者事件中等,但是,对大部分程序员来说,更喜欢使用类似log4net或者Nlog这种日志记录方式,灵活而强大.asp.net5中也包括NLog的实现,下面把最简单的使用方法写出来,抛砖引玉,让更多对此不熟悉的同学们能借此入门. 1.在project.json中添加对Microsoft.Framework.Logging.NLog的引用,目前最新是beta8版本: 2.然后添加NLog.config配置文件到

[转]asp.net5中使用NLog进行日志记录

本文转自:http://www.cnblogs.com/sguozeng/articles/4861303.html asp.net5中使用NLog进行日志记录 asp.net5中提供了性能强大的日志框架,本身也提供了几种日志记录方法,比如记录到控制台或者事件中等,但是,对大部分程序员来说,更喜欢使用类似log4net或者Nlog这种日志记录方式,灵活而强大.asp.net5中也包括NLog的实现,下面把最简单的使用方法写出来,抛砖引玉,让更多对此不熟悉的同学们能借此入门. 1.在project