We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29212fb commit 190c51cCopy full SHA for 190c51c
pretext/cli.py
@@ -469,6 +469,7 @@ def build(
469
if generate and not no_generate:
470
try:
471
for t in targets:
472
+ log.info(f"Generating assets for {t.name}")
473
t.generate_assets(only_changed=False, xmlid=xmlid)
474
no_generate = True
475
except Exception as e:
@@ -484,9 +485,9 @@ def build(
484
485
# Call build
486
487
- log.debug(f"Building target {t.name}")
488
+ log.info(f"Building target {t.name}")
489
if xmlid is not None:
- log.debug(f"with root of tree below {xmlid}")
490
+ log.info(f"with root of tree below {xmlid}")
491
t.build(
492
clean=clean, generate=not no_generate, xmlid=xmlid, no_knowls=no_knowls
493
)
0 commit comments