Log.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. using System.IO;
  5. namespace LYFZ.WxPayAPI
  6. {
  7. public class Log
  8. {
  9. //在网站根目录下创建日志目录
  10. public static string path = System.Environment.CurrentDirectory + "\\logs";
  11. /**
  12. * 向日志文件写入调试信息
  13. * @param className 类名
  14. * @param content 写入内容
  15. */
  16. public static void Debug(string className, string content)
  17. {
  18. if(WxPayConfig.LOG_LEVENL >= 3)
  19. {
  20. WriteLog("DEBUG", className, content);
  21. }
  22. }
  23. /**
  24. * 向日志文件写入运行时信息
  25. * @param className 类名
  26. * @param content 写入内容
  27. */
  28. public static void Info(string className, string content)
  29. {
  30. if (WxPayConfig.LOG_LEVENL >= 2)
  31. {
  32. WriteLog("INFO", className, content);
  33. }
  34. }
  35. /**
  36. * 向日志文件写入出错信息
  37. * @param className 类名
  38. * @param content 写入内容
  39. */
  40. public static void Error(string className, string content)
  41. {
  42. if(WxPayConfig.LOG_LEVENL >= 1)
  43. {
  44. WriteLog("ERROR", className, content);
  45. }
  46. }
  47. /**
  48. * 实际的写日志操作
  49. * @param type 日志记录类型
  50. * @param className 类名
  51. * @param content 写入内容
  52. */
  53. protected static void WriteLog(string type, string className, string content)
  54. {
  55. if(!Directory.Exists(path))//如果日志目录不存在就创建
  56. {
  57. Directory.CreateDirectory(path);
  58. }
  59. string time = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");//获取当前系统时间
  60. string filename = path + "/" + DateTime.Now.ToString("yyyy-MM-dd") + ".log";//用日期对日志文件命名
  61. //创建或打开日志文件,向日志文件末尾追加记录
  62. StreamWriter mySw = File.AppendText(filename);
  63. //向日志文件写入内容
  64. string write_content = time + " " + type + " " + className + ": " + content;
  65. mySw.WriteLine(write_content);
  66. //关闭日志文件
  67. mySw.Close();
  68. }
  69. }
  70. }