forked from mirrors/gecko-dev
Bug 1721514 - Add a few more debugging logs about configure bootstrap. r=firefox-build-system-reviewers,andi
Differential Revision: https://phabricator.services.mozilla.com/D120416
This commit is contained in:
parent
28025bf825
commit
dda1875bdd
1 changed files with 2 additions and 0 deletions
|
|
@ -310,6 +310,7 @@ def bootstrap_path(path, **kwargs):
|
||||||
# `mach artifact toolchain` doesn't support authentication for
|
# `mach artifact toolchain` doesn't support authentication for
|
||||||
# private artifacts.
|
# private artifacts.
|
||||||
if not artifact.startswith("public/"):
|
if not artifact.startswith("public/"):
|
||||||
|
log.debug("Cannot bootstrap %s: not a public artifact", label)
|
||||||
return False
|
return False
|
||||||
index_file = os.path.join(toolchains_base_dir, "indices", path_parts[0])
|
index_file = os.path.join(toolchains_base_dir, "indices", path_parts[0])
|
||||||
try:
|
try:
|
||||||
|
|
@ -318,6 +319,7 @@ def bootstrap_path(path, **kwargs):
|
||||||
except Exception:
|
except Exception:
|
||||||
index = None
|
index = None
|
||||||
if index == task_index and exists:
|
if index == task_index and exists:
|
||||||
|
log.debug("%s is up-to-date", label)
|
||||||
return True
|
return True
|
||||||
log.info(
|
log.info(
|
||||||
"%s bootstrapped toolchain in %s",
|
"%s bootstrapped toolchain in %s",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue