appsettings.json 853 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "Serilog": {
  3. "MinimumLevel": {
  4. "Default": "Information",
  5. "Override": {
  6. "System": "Warning",
  7. "Microsoft": "Warning",
  8. "Microsoft.Hosting.Lifetime": "Information",
  9. "Microsoft.EntityFrameworkCore": "Information"
  10. }
  11. },
  12. "WriteTo": [
  13. {
  14. "Name": "Console",
  15. "Args": {
  16. "outputTemplate": "【时间】{Timestamp:yyyy-MM-dd HH:mm:ss,fff}{NewLine}【等级】{Level:u3}{NewLine}【消息】{Message:lj}{NewLine}{NewLine}"
  17. }
  18. },
  19. {
  20. "Name": "File",
  21. "Args": {
  22. "path": "logs/.log",
  23. "rollingInterval": "Day",
  24. "outputTemplate": "【时间】{Timestamp:yyyy-MM-dd HH:mm:ss,fff}{NewLine}【等级】{Level:u3}{NewLine}【消息】{Message:lj}{NewLine}{NewLine}"
  25. }
  26. }
  27. ]
  28. },
  29. "AllowedHosts": "*"
  30. }