logging.yml 269 B

12345678910111213
  1. # Python logging configuration to write all warnings to a separate file
  2. version: 1
  3. handlers:
  4. warnings:
  5. class: logging.FileHandler
  6. level: WARNING
  7. filename: warnings.log
  8. formatter: BitBake.logfileFormatter
  9. loggers:
  10. BitBake:
  11. handlers: [warnings]