Skip to content

Commit

Permalink
fix: make benchmark result in log more readable
Browse files Browse the repository at this point in the history
benchmark return multi-line result, therefore should log the result from
new line to make the log more readable
  • Loading branch information
potsrevennil committed Nov 19, 2024
1 parent b1436c3 commit 062fb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/mlkem_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def run_scheme(
else:
log.info(f"passed")
else:
log.info(f"{p.stdout.decode()}")
log.info(f"\n{p.stdout.decode()}")
result = p.stdout.decode()

if p.returncode != 0:
Expand Down

0 comments on commit 062fb14

Please sign in to comment.