Skip to content

Commit 4af2f7c

Browse files
Beatify log output
1 parent ff8c4dd commit 4af2f7c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

benchmarks/benchmark.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ def main():
244244
for run in config["runs"]:
245245
logging.info('Run config: %s', run)
246246
run_results = []
247-
for _ in range(run["repetitions"]):
247+
for i in range(run["repetitions"]):
248+
logging.info('Run repetition: %i/%i', i+1, run["repetitions"])
248249
for _ in range(0,2): # Retries, in case of an error
249250
result = run_test(run)
250251
if result is not None:

benchmarks/create_plot_from_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def main():
8484

8585
logging.info('Reading results file: %s', args.results_file)
8686
results = parse_results_file(args.results_file)
87-
logging.info('Results: %s', results)
87+
logging.debug('Results: %s', results)
8888

8989
if args.type == 'area':
9090
generate_area_chart(args.x_axis_param, args.y_axis_param, results, args.chart_name, args.l)

0 commit comments

Comments
 (0)