LoggingSetup.cs 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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"))
  33. {
  34. Array.ForEach(new[] { LogLevel.Information, LogLevel.Warning, LogLevel.Error }, logLevel =>
  35. {
  36. services.AddFileLogging(options =>
  37. {
  38. options.WithTraceId = true; // 显示线程Id
  39. options.WithStackFrame = true; // 显示程序集
  40. options.FileNameRule = fileName => string.Format(fileName, DateTime.Now, logLevel.ToString()); // 每天创建一个文件
  41. options.WriteFilter = logMsg => logMsg.LogLevel == logLevel; // 日志级别
  42. options.HandleWriteError = (writeError) => // 写入失败时启用备用文件
  43. {
  44. writeError.UseRollbackFileName(Path.GetFileNameWithoutExtension(writeError.CurrentFileName) + "-oops" + Path.GetExtension(writeError.CurrentFileName));
  45. };
  46. });
  47. });
  48. }
  49. // 日志写入数据库
  50. if (App.GetConfig<bool>("Logging:Database:Enabled"))
  51. {
  52. services.AddDatabaseLogging<DatabaseLoggingWriter>(options =>
  53. {
  54. options.WithTraceId = true; // 显示线程Id
  55. options.WithStackFrame = true; // 显示程序集
  56. options.IgnoreReferenceLoop = false; // 忽略循环检测
  57. options.WriteFilter = (logMsg) =>
  58. {
  59. return logMsg.LogName == "System.Logging.LoggingMonitor"; // 只写LoggingMonitor日志
  60. };
  61. });
  62. }
  63. // 日志写入ElasticSearch
  64. if (App.GetConfig<bool>("Logging:ElasticSearch:Enabled"))
  65. {
  66. services.AddDatabaseLogging<ElasticSearchLoggingWriter>(options =>
  67. {
  68. options.WithTraceId = true; // 显示线程Id
  69. options.WithStackFrame = true; // 显示程序集
  70. options.IgnoreReferenceLoop = false; // 忽略循环检测
  71. options.MessageFormat = LoggerFormatter.Json;
  72. options.WriteFilter = (logMsg) =>
  73. {
  74. return logMsg.LogName == "System.Logging.LoggingMonitor"; // 只写LoggingMonitor日志
  75. };
  76. });
  77. }
  78. }
  79. }