LogHelper.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using System.Text;
  6. [assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", ConfigFileExtension = "config", Watch = true)]
  7. namespace lyfzAttendance.Controller
  8. {
  9. /// <summary>
  10. /// fatal > error > warn > info > debug
  11. /// </summary>
  12. public class LogHelper
  13. {
  14. log4net.ILog log = null;
  15. public LogHelper(Type t)
  16. {
  17. log = log4net.LogManager.GetLogger(t);
  18. }
  19. #region 成员方法;
  20. public void LogFatal(string msg, Exception ex)
  21. {
  22. //记录严重错误;
  23. log.Fatal("fatal", ex);
  24. }
  25. public void LogFatal(string msg)
  26. {
  27. //记录严重错误;
  28. log.Fatal(msg);
  29. }
  30. public void LogError(string msg, Exception ex)
  31. {
  32. //记录错误日志;
  33. log.Error("error", ex);
  34. }
  35. public void LogError(string msg)
  36. {
  37. //记录错误日志;
  38. log.Error(msg);
  39. }
  40. public void LogWarn(string msg)
  41. {
  42. //记录警告信息;
  43. log.Warn(msg);
  44. }
  45. public void LogInfo(string msg)
  46. {
  47. //记录一般信息;
  48. log.Info(msg);
  49. }
  50. public void LogDebug(string msg)
  51. {
  52. //记录调试信息;
  53. log.Debug(msg);
  54. }
  55. #endregion
  56. #region 静态方法, 直接使用;
  57. public static void LogFatal(Type t, string msg, Exception ex)
  58. {
  59. //创建日志记录组件实例;
  60. log4net.ILog log = log4net.LogManager.GetLogger(t);
  61. //记录严重错误;
  62. log.Fatal("fatal", ex);
  63. }
  64. public static void LogFatal(Type t, string msg)
  65. {
  66. //创建日志记录组件实例;
  67. log4net.ILog log = log4net.LogManager.GetLogger(t);
  68. //记录严重错误;
  69. log.Fatal(msg);
  70. }
  71. public static void LogError(Type t, string msg, Exception ex)
  72. {
  73. //创建日志记录组件实例;
  74. log4net.ILog log = log4net.LogManager.GetLogger(t);
  75. //记录错误日志;
  76. log.Error("error", ex);
  77. }
  78. public static void LogError(Type t, string msg)
  79. {
  80. //创建日志记录组件实例;
  81. log4net.ILog log = log4net.LogManager.GetLogger(t);
  82. //记录错误日志;
  83. log.Error(msg);
  84. }
  85. public static void LogWarn(Type t, string msg)
  86. {
  87. //创建日志记录组件实例;
  88. log4net.ILog log = log4net.LogManager.GetLogger(t);
  89. //记录警告信息;
  90. log.Warn(msg);
  91. }
  92. public static void LogInfo(Type t, string msg)
  93. {
  94. //创建日志记录组件实例;
  95. log4net.ILog log = log4net.LogManager.GetLogger(t);
  96. //记录一般信息;
  97. log.Info(msg);
  98. }
  99. public static void LogDebug(Type t, string msg)
  100. {
  101. //创建日志记录组件实例;
  102. log4net.ILog log = log4net.LogManager.GetLogger(t);
  103. //记录调试信息;
  104. log.Debug(msg);
  105. }
  106. #endregion
  107. }
  108. }