mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-12 03:10:15 +00:00
The files in kas/ are not generic Kas files, but instead designed specifically and solely around the CI system. Change-Id: I30082392ad2231a4c1c41e54a292595adf81715b Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
14 lines
269 B
YAML
14 lines
269 B
YAML
# Python logging configuration to write all warnings to a separate file
|
|
version: 1
|
|
|
|
handlers:
|
|
warnings:
|
|
class: logging.FileHandler
|
|
level: WARNING
|
|
filename: warnings.log
|
|
formatter: BitBake.logfileFormatter
|
|
|
|
loggers:
|
|
BitBake:
|
|
handlers: [warnings]
|