Files
OpenBMC/meta-arm/ci/logging.yml
T

14 lines
269 B
YAML
Raw Normal View History

2026-04-23 17:07:55 +08:00
# 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]