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

Nlog 手动配置

时间:2020-10-14 20:48:47      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:div   client   and   add   cti   int   long   stack   new   

 

var config = new NLog.Config.LoggingConfiguration( );

var logfile = new NLog.Targets.DatabaseTarget( ) { };

logfile.CommandText = "insert into MyLog ([CreateDate], [Origin], [LogLevel], [Message], [StackTrace]) values (@createDate, @origin, @logLevel, @message, @stackTrace);";

logfile.CommandType = System.Data.CommandType.Text;

logfile.ConnectionString = "";

logfile.Name="dblog";

logfile.Parameters.Add( new DatabaseParameterInfo( "@createDate", "${longdate}" ) );

logfile.DBProvider = "MySql.Data.MySqlClient";//System.Data.SqlClient

config.LoggingRules.Add( new NLog.Config.LoggingRule( "*", NLog.LogLevel.Debug, logfile ) );

NLog.LogManager.Configuration = config;
loggerFactory.AddNLog();

Nlog 手动配置

标签:div   client   and   add   cti   int   long   stack   new   

原文地址:https://www.cnblogs.com/YorkQi/p/13816021.html

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