You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

209 lines
7.5 KiB

/*******************************************************************************
* Copyright © 2017-2020 Znyc.Cloudcar.Admin.Framework 版权所有
* Author: Znyc
* Description: Znyc快速开发平台
* Website:http://www.Znyc.Cloudcar.Admin.com
*********************************************************************************/
using log4net;
using log4net.Config;
using log4net.Repository;
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.IO;
namespace Znyc.Cloudcar.Admin.Commons.Log
{
/// <summary>
/// log4net封装类
/// *********************************使用说明**********************************
/// 1.首先将配置文件(log4net.config或App.config)放置在程序运行目录
/// 2.调用SetConfig方法,并传入配置文件的全路径
/// </summary>
public class Log4NetHelper
{
/// <summary>
/// log4net 仓储库
/// </summary>
private static ILoggerRepository _repository;
private static readonly ConcurrentDictionary<string, ILog> Loggers = new ConcurrentDictionary<string, ILog>();
/// <summary>
/// 读取配置文件,并使其生效。如果未找到配置文件,则抛出异常
/// </summary>
/// <param name="repository"></param>
/// <param name="configFilePath">配置文件全路径</param>
public static void SetConfig(ILoggerRepository repository, string configFilePath)
{
_repository = repository;
FileInfo fileInfo = new FileInfo(configFilePath);
if (!fileInfo.Exists)
{
throw new Exception("未找到配置文件" + configFilePath);
}
XmlConfigurator.ConfigureAndWatch(_repository, fileInfo);
}
/// <summary>
/// 获取记录器
/// </summary>
/// <param name="source">soruce</param>
/// <returns></returns>
private static ILog GetLogger(string source)
{
if (Loggers.ContainsKey(source))
{
return Loggers[source];
}
else
{
ILog logger = LogManager.GetLogger(_repository.Name, source);
Loggers.TryAdd(source, logger);
return logger;
}
}
#region Log a message object
/// <summary>
/// 调试信息日志
/// </summary>
/// <param name="msg">日志信息</param>
public static void Debug(string msg)
{
ILog logger = GetLogger("Debug");
if (logger.IsDebugEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
/// <summary>
/// 错误信息日志
/// </summary>
/// <param name="msg">日志信息</param>
public static void Error(string msg)
{
ILog logger = GetLogger("Debug");
if (logger.IsErrorEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
/// <summary>
/// 异常错误信息日志
/// </summary>
/// <param name="throwMsg">异常抛出信息</param>
/// <param name="ex">异常信息</param>
public static void Error(string throwMsg, Exception ex)
{
ILog logger = GetLogger("Error");
if (logger.IsErrorEnabled)
{
string message =
$"抛出信息:{throwMsg} \r\n异常类型:{ex.GetType().Name} \r\n异常信息:{ex.Message} \r\n堆栈调用:\r\n{ex.StackTrace}";
logger.Error(message);
}
}
/// <summary>
/// 异常错误信息
/// </summary>
/// <param name="source">source</param>
/// <param name="throwMsg">异常抛出信息</param>
/// <param name="ex">异常信息</param>
public static void Error(Type source, object throwMsg, Exception ex)
{
ILog logger = GetLogger("Error");
if (logger.IsErrorEnabled)
{
string message =
$"抛出信息:{throwMsg} \r\n异常类型:{ex.GetType().Name} \r\n异常信息:{ex.Message} \r\n【堆栈调用】:\r\n{ex.StackTrace}";
logger.Error(message);
}
}
/// <summary>
/// 关键信息日志
/// </summary>
/// <param name="msg">日志信息</param>
public static void Info(string msg)
{
ILog logger = GetLogger("Info");
if (logger.IsInfoEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
/// <summary>
/// 警告信息日志
/// </summary>
/// <param name="msg">日志信息</param>
public static void Warn(string msg)
{
ILog logger = GetLogger("Warn");
if (logger.IsWarnEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
/// <summary>
/// 失败信息日志
/// </summary>
/// <param name="msg">日志信息</param>
public static void Fatal(string msg)
{
ILog logger = GetLogger("Fatal");
if (logger.IsFatalEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
#endregion Log a message object
/// <summary>
/// 关键信息日志
/// </summary>
/// <param name="path">文件路径</param>
/// <param name="msg">日志信息</param>
public static void Info(string path, string msg)
{
ILog logger = GetLogger("Info");
if (logger.IsInfoEnabled)
{
StackTrace stackTrace = new StackTrace();
StackFrame stackFrame = stackTrace.GetFrame(1);
System.Reflection.MethodBase methodBase = stackFrame.GetMethod();
string message = "方法名称:" + methodBase.Name + "\r\n日志内容:" + msg;
logger.Info(message);
}
}
}
}