in iact3/termial_print.py [0:0]
def _print_tree_minimal(stack, history):
if stack.id not in history:
history[stack.id] = ""
if history[stack.id] != stack.status:
history[stack.id] = stack.status
msg = f"{stack.test_name} {stack.region} {stack.status}"
if "FAILED" in stack.status:
LOG.error(msg)
for event in stack.error_events(refresh=True):
LOG.error(f" {event.logical_id} {event.status_reason}")
else:
LOG.info(msg)