appsettings.Development.json 490 B

123456789101112131415161718192021
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/net6/schemas/v3/furion-schema.json",
  3. "Logging": {
  4. "LogLevel": {
  5. "Default": "Information",
  6. "Microsoft": "Warning",
  7. "Microsoft.Hosting.Lifetime": "Information"
  8. },
  9. "File": {
  10. "FileName": "logs/info.log",
  11. "Append": true,
  12. "MinimumLevel": "Information",
  13. "FileSizeLimitBytes": 5120,
  14. "MaxRollingFiles": 100
  15. },
  16. "Database": {
  17. "MinimumLevel": "Information"
  18. }
  19. }
  20. }