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

Signed-off-by: Thing-han, Lim <[email protected]>
  • Loading branch information
potsrevennil committed Nov 19, 2024
1 parent 75f52dc commit d0b121d
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 d0b121d

Please sign in to comment.