blob: 3af10295f8f302a49f2dc764f79089509202aeae [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001# Python logging configuration to write all warnings to a separate file
2version: 1
3
4handlers:
5 warnings:
6 class: logging.FileHandler
7 level: WARNING
8 filename: warnings.log
9 formatter: BitBake.logfileFormatter
10
11loggers:
12 BitBake:
13 handlers: [warnings]