MVC添加记录日志(log4net)

一、在项目中添加--->管理NUGET程序包--->浏览-->搜索log4net-->安装log4net

MVC添加记录日志(log4net)_第1张图片

二、安装成功后会在项目中显示App_Data文件夹 

添加Config文件夹和log4net.config

这里log4net.config文件内容已写好,无需变动



  
    

 

三、然后在项目中添加Filters文件夹和ExceptionAttribute.cs,具体代码如下:

using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace  WebApplication1.Filters
{
    /// 
    /// 异常处理过滤器,使用log4net记录日志,并跳转至错误页面
    /// 
    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
    public class ExceptionAttribute : HandleErrorAttribute
    {
        ILog log = LogManager.GetLogger(typeof(ExceptionAttribute));
        public override void OnException(ExceptionContext filterContext)
        {
            if (!filterContext.ExceptionHandled)
            {
                string message = string.Format("消息类型:{0}\r\n消息内容:{1}\r\n引发异常的方法:{2}\r\n引发异常源:{3}"
                    , filterContext.Exception.GetType().Name
                    , filterContext.Exception.Message
                     , filterContext.Exception.TargetSite
                     , filterContext.Exception.Source + filterContext.Exception.StackTrace
                     );

                //记录日志
                log.Error(message);
                //转向
                filterContext.ExceptionHandled = true;
                filterContext.Result = new RedirectResult("/Common/Error");
            }
            base.OnException(filterContext);
        }
    }
}

在以下文件下添加

[assembly: log4net.Config.XmlConfigurator(ConfigFile = @"Config\log4net.config", Watch = true)]

如下图:

MVC添加记录日志(log4net)_第2张图片

在此文件夹的类文件下添加引用

MVC添加记录日志(log4net)_第3张图片


using WebApplication1.Filters;
using System.Web;
using System.Web.Mvc;

namespace WebApplication1
{
    public class FilterConfig
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            filters.Add(new HandleErrorAttribute());
            filters.Add(new ExceptionAttribute());//要添加的代码
        }
    }
}

这样就完成了!!!!!

注意添加using引用,不然会报错。

可以在Logs>Error文件下查看日志信息。

你可能感兴趣的:(ASP.NET,MVC)