Skip to content

Commit 2aa6700

Browse files
committed
bootstrap: Actually respect verbosity setting in config.toml
1 parent 5b13bff commit 2aa6700

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/bootstrap/bootstrap.py

+5
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,11 @@ def bootstrap():
620620
except:
621621
pass
622622

623+
if '\nverbose = 2' in rb.config_toml:
624+
rb.verbose = 2
625+
elif '\nverbose = 1' in rb.config_toml:
626+
rb.verbose = 1
627+
623628
rb.use_vendored_sources = '\nvendor = true' in rb.config_toml or \
624629
'CFG_ENABLE_VENDOR' in rb.config_mk
625630

0 commit comments

Comments
 (0)