ASP.NET MVC 与NLog的使用
NLog是一个.NET 下一个完善的日志工具,个人已经在项目中使用很久,与ELMAH相比,可能EAMAH更侧重 APS.NET MVC 包括调试路由,性能等方面,而NLog则更简洁。
github: https://github.com/NLog/NLog
web: http://nlog-project.org
logview:http://www.gibraltarsoftware.com/loupe/extensions/nlog
http://stackoverflow.com/questions/710863/log4net-vs-nlog
http://stackoverflow.com/questions/4091606/most-useful-nlog-configurations
Supported targets include:
Files - single file or multiple, with automatic file naming and archival
Event Log - local or remote
Database - store your logs in databases supported by .NET
Network - using TCP, UDP, SOAP, MSMQ protocols
Command-line console - including color coding of messages
E-mail - you can receive emails whenever application errors occur
ASP.NET trace
... and many moreOther key features:
very easy to configure, both through configuration file and programmatically
easy-to-use logger pattern known from log4xxx
advanced routing using buffering, asynchronous logging, load balancing, failover, and more
cross-platform support: .NET Framework, .NET Compact Framework and Mono (on Windows and Unix)
安装

配置
<?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 http://nlog-project.org/wiki/Configuration_file
for information on customizing logging rules and outputs.
--> <!-- 使用说明
1.一般控制台调式日志(打印到控制台)
logger.Trace("GetHotelBrand 操作数据库异常 sqlText : " + sqlText);
2. 一般文本日志,如记录接口,响应值等 请求参数等(记录文本,支持异步),
logger.Info("GetHotelBrand 操作数据库异常 sqlText : " + sqlText);
3.错误日志 一般影响到业务流程的正常使用 (记录到DB)
logger.ErrorException("GetHotelBrand 操作数据库异常 sqlText : " + sqlText, ex);
4.致命性错误 如金额数据,订单数据操作失败 (发送邮件通知)
logger.FatalException("GetHotelBrand 操作数据库异常 sqlText : " + sqlText, ex);
--> <targets>
<!-- add your targets here -->
<!--调式打印控制台日志-->
<target name="console" xsi:type="ColoredConsole" layout="[${date:format=yyyy-MM-dd HH\:mm\:ss}][${level}] ${message} ${exception}"/> <!-- 记录一般INFO文本日志(启用异步) -->
<target name="file" xsi:type="AsyncWrapper" queueLimit="5000" overflowAction="Discard">
<target xsi:type="File" fileName="${basedir}/logs/${shortdate}/${level}.log" layout="${longdate} ${uppercase:${level}} ${message}" maxArchiveFiles="100" />
</target> <!-- 发生错误异常记录数据库日志 -->
<target name="database" xsi:type="Database" useTransactions="true" connectionString="Data Source=xxxxxxxx;Initial Catalog=Log;Persist Security Info=True;User ID=sa;Password=123456" commandText="insert into NLogException_HomeinnsInterface([CreateOn],[Origin],[LogLevel], [Message], [Exception],[StackTrace]) values (getdate(), @origin, @logLevel, @message,@exception, @stackTrace);">
<!--日志来源-->
<parameter name="@origin" layout="${callsite}"/>
<!--日志等级-->
<parameter name="@logLevel" layout="${level}"/>
<!--日志消息-->
<parameter name="@message" layout="${message}"/>
<!--异常信息-->
<parameter name="@exception" layout="${exception}" />
<!--堆栈信息-->
<parameter name="@stackTrace" layout="${stacktrace}"/>
</target> <!-- 发生致命错误发送邮件日志 -->
<target name="email" xsi:type="Mail"
header="-----header------"
footer="-----footer-----"
layout="${longdate} ${level} ${callsite} ${message} ${exception:format=Message, Type, ShortType, ToString, Method, StackTrace}"
html="false"
encoding="UTF-8"
addNewLines="true"
subject="${message}"
to=""
from=""
body="${longdate} ${level} ${callsite} ${message} ${exception:format=Message, Type, ShortType, ToString, Method, StackTrace}"
smtpUserName=""
enableSsl="false"
smtpPassword=""
smtpAuthentication="Basic"
smtpServer="smtp.163.com"
smtpPort="25">
</target>
</targets>
<rules>
<!-- add your logging rules here -->
<logger name="*" minlevel="Trace" writeTo="console" />
<logger name="*" minlevel="Info" writeTo="file" />
<logger name="*" minlevel="Error" writeTo="database"/>
<logger name="*" minlevel="Fatal" writeTo="email" />
</rules>
</nlog>
配置什么的也没有什么好说的,跟相对Log4j配置简洁些,支持 控制台,文件(异步),数据库,Email,够用了,其他的方式还没有研究。
日志查看
这里推荐一款日志查看工具:Loupe ,支持.NET 平台下集成,在Asp.NET MVC 下只需要配置Nuget引用相应的包。
Install-Package Gibraltar.Agent.Web.Mvc
注册拦截器
using Gibraltar.Agent;
using Gibraltar.Agent.Web.Mvc.Filters; public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
// Initialize Gibraltar Loupe
Log.StartSession();
GlobalConfiguration.Configuration.Filters.Add(new WebApiRequestMonitorAttribute());
GlobalFilters.Filters.Add(new MvcRequestMonitorAttribute());
GlobalFilters.Filters.Add(new UnhandledExceptionAttribute());
}
}

结合SignalR
今天看到一篇与signalr结合的文章,可以把记录的日志主动推送到浏览器 : http://www.codeproject.com/Articles/758633/Streaming-logs-with-SignalR ,原理NLog支持MethodCallTarget特性,发生异常时,可以触发Signalr的相关方法,从而推送错误消息到浏览器。
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
</configSections>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" throwExceptions="false">
<targets>
<target name="debug" xsi:type="Debugger" layout=" #${longdate} - ${level} - ${callsite} - ${message}" />
<target name="signalr" xsi:type="MethodCall" className="SignalRTargetHub, App_Code" methodName="Send">
<parameter layout="${longdate}" />
<parameter layout="${level}" />
<parameter layout="${callsite}: ${message}" />
</target>
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="debug" />
<logger name="*" minlevel="Trace" writeTo="signalr" />
</rules>
</nlog>
使用OWIN宿主,Open Web Interface for .NET (OWIN)在Web服务器和Web应用程序之间建立一个抽象层。OWIN将网页应用程序从网页服务器分离出来,然后将应用程序托管于OWIN的程序而离开IIS之外。
public class SignalRTargetHub : Hub
{
public void Hello()
{
this.Clients.Caller.logEvent(
DateTime.UtcNow.ToLongTimeString(),
"info",
"SignalR connected");
} static IHubContext signalRHub;
public static void Send(string longdate, string logLevel, String message)
{
if (signalRHub == null)
{
signalRHub = GlobalHost.ConnectionManager.GetHubContext<SignalRTargetHub>();
} if (signalRHub != null)
{
signalRHub.Clients.All.logEvent(longdate, logLevel, message);
}
}
} [assembly: OwinStartup(typeof(SignalRStartup))]
public class SignalRStartup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
注册Global事件
Logger logger = NLog.LogManager.GetCurrentClassLogger();
void Application_Error(object sender, EventArgs e)
{
Exception lastException = Server.GetLastError();
logger.Fatal("Request: '{0}'\n Exception:{1}", HttpContext.Current.Request.Url, lastException);
}
Refer:
How to NLog (2.1) with VisualStudio 2013http://www.codeproject.com/Tips/749612/How-to-NLog-with-VisualStudio
Logging: How to Growl with NLog 3http://www.codeproject.com/Articles/786304/Logging-How-to-Growl-with-NLog-or
Five methods to Logging in MVC 3.0(介绍较详细,需翻墙)http://www.codeproject.com/Tips/237171/Five-methods-to-Logging-in-MVC
微软最新的Web服务器Katana发布了版本3(OWIN)
ASP.NET MVC 与NLog的使用的更多相关文章
- .net framework 4.6 asp.net mvc 使用NLog
NUGET添加NLog和NLog.Config的引用 配置NLog.config <?xml version="1.0" encoding="utf-8" ...
- NLog在Asp.Net MVC的实战应用
Asp.Net MVC FilterAttribute特性.读取xml反序列化.NLog实战系列文章 首先新建一个MVC project. 一.NLog的配置. 作者:Jarosław Kowalsk ...
- EF+LINQ事物处理 C# 使用NLog记录日志入门操作 ASP.NET MVC多语言 仿微软网站效果(转) 详解C#特性和反射(一) c# API接受图片文件以Base64格式上传图片 .NET读取json数据并绑定到对象
EF+LINQ事物处理 在使用EF的情况下,怎么进行事务的处理,来减少数据操作时的失误,比如重复插入数据等等这些问题,这都是经常会遇到的一些问题 但是如果是我有多个站点,然后存在同类型的角色去操作 ...
- 17+个ASP.NET MVC扩展点【附源码】
1.自定义一个HttpModule,并将其中的方法添加到HttpApplication相应的事件中!即:创建一个实现了IHttpmodule接口的类,并将配置WebConfig. 在自定义的Http ...
- 17+个ASP.NET MVC扩展点,含源码{转}
1.自定义一个HttpModule,并将其中的方法添加到HttpApplication相应的事件中!即:创建一个实现了IHttpmodule接口的类,并将配置WebConfig.在自定义的HttpMo ...
- asp.net mvc ,asp.net mvc api 中使用全局过滤器进行异常捕获记录
MVC下的全局异常过滤器注册方式如下:标红为asp.net mvc ,asp.net mvc api 注册全局异常过滤器的不同之处 using SuperManCore; using System. ...
- ASP.NET MVC扩展点
16个ASP.NET MVC扩展点[附源码] 1.自定义一个HttpModule,并将其中的方法添加到HttpApplication相应的事件中!即:创建一个实现了IHttpmodule接口的类,并将 ...
- ASP.NET MVC 常用扩展点:过滤器、模型绑定等
一.过滤器(Filter) ASP.NET MVC中的每一个请求,都会分配给对应Controller(以下简称“控制器”)下的特定Action(以下简称“方法”)处理,正常情况下直接在方法里写代码就可 ...
- 整理学习ASP.NET MVC的资源
网站 http://www.asp.net/mvc http://stackoverflow.com/questions/tagged/asp.net-mvc+asp.net-mvc-4?sort=n ...
随机推荐
- JSTL安装与使用
第一步:下载支持JSTL的文件.jakarta-taglibs-standard-1.1.2.zip 第二步:下载解压后的两个jar文件:standard.jar和jstl.jar文件拷贝到工程的\W ...
- C++调用ocx
1.保证ocx已正常注册,可以使用 2.创建一个C++的命令行程序,在主程序#import "HZ_KevinTest.ocx" no_namespace 生成一次程序,debug ...
- sql_id VS hash_value
有没有发现,v$session,v$sql,v$sqlarea,v$sqltext,v$sql_shared_cursor等试图连接的时候经常会用到hash_value,sql_id,但是他们2个之间 ...
- 1143 Lowest Common Ancestor
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U ...
- 20180705 fragment
https://www.cnblogs.com/chaowang/p/6180825.html https://blog.csdn.net/xxkalychen/article/details/537 ...
- 20145232 韩文浩 《Java程序设计》第3周学习总结
教材学习内容总结 在第三章中,知道了Java可区分为基本类型和类类型两大类型系统,其中类类型也称为参考类型.在这一周主要学习了类类型. 对象(Object):存在的具体实体,具有明确的状态和行为 类( ...
- X Window(远程桌面)
X Window在位映射屏幕上的一个或多个窗口中运行程序.用户可以在每个窗口中同时运行多个程序,并且可以通过用鼠标在窗口之间进行切换. x服务器的程序在本地工作站上运行,并且管理它的窗口和程序. 每个 ...
- day37(类加载器)
类的加载器:将class文件加载到JVM中执行这个文件. Java中将类加载器分成三类: 引导类加载器: JAVA_HOME/jre/lib/rt.jar | 扩展类加载器: JAVA ...
- STL-容器库101--array【C11】
1. 原型 C11提供 template < class T, size_t N > class array; T: 元素类型,以 array::value_type 作为别名使用:N: ...
- 防Xss注入
转自博客:https://blog.csdn.net/qq_21956483/article/details/54377947 1.什么是XSS攻击 XSS又称为CSS(Cross SiteScrip ...