From 3d23ad5da942377484cec5eda81a02af59463e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Chodo=C5=82a?= <43241881+kamilchodola@users.noreply.github.com> Date: Wed, 3 Apr 2024 20:38:30 +0200 Subject: [PATCH] more logs --- flood/runners/single_runner/single_runner_summary.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flood/runners/single_runner/single_runner_summary.py b/flood/runners/single_runner/single_runner_summary.py index 58ebc87..13ecbdd 100644 --- a/flood/runners/single_runner/single_runner_summary.py +++ b/flood/runners/single_runner/single_runner_summary.py @@ -228,19 +228,21 @@ def _print_single_run_conclusion_text( ] = category_results else: raise Exception('deep metrics not available') - print(deep_results_by_category) print() + print("test1") flood.user_io.print_metric_tables( results=deep_results_by_category['failed'], metrics=['n_invalid_json_errors'], indent=4, ) print() + print("test2") flood.user_io.print_metric_tables( results=deep_results_by_category['failed'], metrics=['n_rpc_errors'], indent=4, ) + print("test3") metric_names = [ m for m in metrics if m not in ['success', 'throughput'] @@ -256,4 +258,4 @@ def _print_single_run_conclusion_text( suffix=', ' + category + ' calls', indent=4, ) - + print("test4")