aboutsummaryrefslogtreecommitdiffstats
path: root/ci/logging.yml
blob: 3af10295f8f302a49f2dc764f79089509202aeae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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]