LoggingSetup.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // 麻省理工学院许可证
  2. //
  3. // 版权所有 (c) 2021-2023 zuohuaijun,大名科技(天津)有限公司 联系电话/微信:18020030720 QQ:515096995
  4. //
  5. // 特此免费授予获得本软件的任何人以处理本软件的权利,但须遵守以下条件:在所有副本或重要部分的软件中必须包括上述版权声明和本许可声明。
  6. //
  7. // 软件按“原样”提供,不提供任何形式的明示或暗示的保证,包括但不限于对适销性、适用性和非侵权的保证。
  8. // 在任何情况下,作者或版权持有人均不对任何索赔、损害或其他责任负责,无论是因合同、侵权或其他方式引起的,与软件或其使用或其他交易有关。
  9. namespace Admin.NET.Core;
  10. public static class LoggingSetup
  11. {
  12. /// <summary>
  13. /// 日志注册
  14. /// </summary>
  15. /// <param name="services"></param>
  16. public static void AddLoggingSetup(this IServiceCollection services)
  17. {
  18. //// 控制台日志格式化
  19. //services.AddConsoleFormatter(options =>
  20. //{
  21. // options.DateFormat = "yyyy-MM-dd HH:mm:ss(zzz) dddd";
  22. // //options.WithTraceId = true; // 显示线程Id
  23. // //options.WithStackFrame = true; // 显示程序集
  24. //});
  25. // 日志监听
  26. services.AddMonitorLogging(options =>
  27. {
  28. options.IgnorePropertyNames = new[] { "Byte" };
  29. options.IgnorePropertyTypes = new[] { typeof(byte[]) };
  30. });
  31. // 日志写入文件
  32. if (App.GetConfig<bool>("Logging:File:Enabled", true))
  33. {
  34. var loggingMonitorSettings = App.GetConfig<LoggingMonitorSettings>("Logging:Monitor", true);
  35. Array.ForEach(new[] { LogLevel.Information, LogLevel.Warning, LogLevel.Error }, logLevel =>
  36. {
  37. services.AddFileLogging(options =>
  38. {
  39. options.WithTraceId = true; // 显示线程Id
  40. options.WithStackFrame = true; // 显示程序集
  41. options.FileNameRule = fileName => string.Format(fileName, DateTime.Now, logLevel.ToString()); // 每天创建一个文件
  42. options.WriteFilter = logMsg => logMsg.LogLevel == logLevel; // 日志级别
  43. options.HandleWriteError = (writeError) => // 写入失败时启用备用文件
  44. {
  45. writeError.UseRollbackFileName(Path.GetFileNameWithoutExtension(writeError.CurrentFileName) + "-oops" + Path.GetExtension(writeError.CurrentFileName));
  46. };
  47. if (loggingMonitorSettings.JsonBehavior == JsonBehavior.OnlyJson)
  48. {
  49. options.MessageFormat = LoggerFormatter.Json;
  50. // options.MessageFormat = LoggerFormatter.JsonIndented;
  51. options.MessageFormat = (logMsg) =>
  52. {
  53. var jsonString = logMsg.Context.Get("loggingMonitor");
  54. return jsonString?.ToString();
  55. };
  56. }
  57. });
  58. });
  59. }
  60. // 日志写入数据库
  61. if (App.GetConfig<bool>("Logging:Database:Enabled", true))
  62. {
  63. services.AddDatabaseLogging<DatabaseLoggingWriter>(options =>
  64. {
  65. options.WithTraceId = true; // 显示线程Id
  66. options.WithStackFrame = true; // 显示程序集
  67. options.IgnoreReferenceLoop = false; // 忽略循环检测
  68. options.WriteFilter = (logMsg) =>
  69. {
  70. return logMsg.LogName == "System.Logging.LoggingMonitor"; // 只写LoggingMonitor日志
  71. };
  72. });
  73. }
  74. // 日志写入ElasticSearch
  75. if (App.GetConfig<bool>("Logging:ElasticSearch:Enabled", true))
  76. {
  77. services.AddDatabaseLogging<ElasticSearchLoggingWriter>(options =>
  78. {
  79. options.WithTraceId = true; // 显示线程Id
  80. options.WithStackFrame = true; // 显示程序集
  81. options.IgnoreReferenceLoop = false; // 忽略循环检测
  82. options.MessageFormat = LoggerFormatter.Json;
  83. options.WriteFilter = (logMsg) =>
  84. {
  85. return logMsg.LogName == "System.Logging.LoggingMonitor"; // 只写LoggingMonitor日志
  86. };
  87. });
  88. }
  89. }
  90. }