您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
422B

  1. version: 1
  2. formatters:
  3. simple:
  4. format: '%(asctime)s - %(levelname)-8s - %(name)s - %(message)s'
  5. handlers:
  6. console:
  7. class: logging.StreamHandler
  8. level: DEBUG
  9. formatter: simple
  10. stream: ext://sys.stdout
  11. file:
  12. class : logging.handlers.RotatingFileHandler
  13. formatter: simple
  14. filename: ./logs/app.log
  15. maxBytes: 10000000
  16. backupCount: 3
  17. root:
  18. level: DEBUG
  19. handlers: [console, file]