appsettings.Development.json 499 B

1234567891011121314151617181920
  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. "FileNameRule": "{0:yyyyMMdd}",
  12. "Append": true,
  13. "MinimumLevel": "Information",
  14. "FileSizeLimitBytes": 5120,
  15. "MaxRollingFiles": 100,
  16. "UseUtcTimestamp": false
  17. }
  18. }
  19. }