123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- [assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", ConfigFileExtension = "config", Watch = true)]
- namespace lyfzAttendance.Controller
- {
- /// <summary>
- /// fatal > error > warn > info > debug
- /// </summary>
- public class LogHelper
- {
- log4net.ILog log = null;
- public LogHelper(Type t)
- {
- log = log4net.LogManager.GetLogger(t);
- }
- #region 成员方法;
- public void LogFatal(string msg, Exception ex)
- {
- //记录严重错误;
- log.Fatal("fatal", ex);
- }
- public void LogFatal(string msg)
- {
- //记录严重错误;
- log.Fatal(msg);
- }
- public void LogError(string msg, Exception ex)
- {
- //记录错误日志;
- log.Error("error", ex);
- }
- public void LogError(string msg)
- {
- //记录错误日志;
- log.Error(msg);
- }
- public void LogWarn(string msg)
- {
- //记录警告信息;
- log.Warn(msg);
- }
- public void LogInfo(string msg)
- {
- //记录一般信息;
- log.Info(msg);
- }
- public void LogDebug(string msg)
- {
- //记录调试信息;
- log.Debug(msg);
- }
- #endregion
- #region 静态方法, 直接使用;
- public static void LogFatal(Type t, string msg, Exception ex)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录严重错误;
- log.Fatal("fatal", ex);
- }
- public static void LogFatal(Type t, string msg)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录严重错误;
- log.Fatal(msg);
- }
- public static void LogError(Type t, string msg, Exception ex)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录错误日志;
- log.Error("error", ex);
- }
- public static void LogError(Type t, string msg)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录错误日志;
- log.Error(msg);
- }
- public static void LogWarn(Type t, string msg)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录警告信息;
- log.Warn(msg);
- }
- public static void LogInfo(Type t, string msg)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录一般信息;
- log.Info(msg);
- }
- public static void LogDebug(Type t, string msg)
- {
- //创建日志记录组件实例;
- log4net.ILog log = log4net.LogManager.GetLogger(t);
- //记录调试信息;
- log.Debug(msg);
- }
- #endregion
- }
- }
|