summaryrefslogtreecommitdiff
path: root/buildstream/_frontend
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-02 03:57:01 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-02 03:57:01 +0900
commit23cea695fd42bbdaf24e0135697bb70adf134fa0 (patch)
treecc48f91639713f82d5a1512abaf7ea59e6231480 /buildstream/_frontend
parentaa8410d88b78403f37328e4c954a9636a276c564 (diff)
downloadbuildstream-23cea695fd42bbdaf24e0135697bb70adf134fa0.tar.gz
_frontend/widget.py: Add "Strict Build Plan" setting to session heading
Looks like this quite interesting attribute was not getting logged.
Diffstat (limited to 'buildstream/_frontend')
-rw-r--r--buildstream/_frontend/widget.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildstream/_frontend/widget.py b/buildstream/_frontend/widget.py
index 044f2bebc..03bb58d65 100644
--- a/buildstream/_frontend/widget.py
+++ b/buildstream/_frontend/widget.py
@@ -520,6 +520,7 @@ class LogLine(Widget):
values["Source Mirrors"] = context.sourcedir
values["Build Area"] = context.builddir
values["Artifact Cache"] = context.artifactdir
+ values["Strict Build Plan"] = "Yes" if context.strict_build_plan else "No"
values["Maximum Fetch Tasks"] = context.sched_fetchers
values["Maximum Build Tasks"] = context.sched_builders
values["Maximum Push Tasks"] = context.sched_pushers