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 { /// /// fatal > error > warn > info > debug /// 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 } }