aboutsummaryrefslogtreecommitdiffstats
path: root/ci/logging.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ci/logging.yml')
-rw-r--r--ci/logging.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/ci/logging.yml b/ci/logging.yml
new file mode 100644
index 0000000..3af1029
--- /dev/null
+++ b/ci/logging.yml
@@ -0,0 +1,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]