From 700247d30f2fca226bff7caa6d02782a6a9944ff Mon Sep 17 00:00:00 2001 From: Michael Grupp Date: Wed, 12 Jun 2024 16:38:15 +0200 Subject: [PATCH] Limit evo_res --verbose column content (#676) Less spam on stdout by raw value arrays. The output is just to provide a small overview. --- evo/main_res.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evo/main_res.py b/evo/main_res.py index d327ba7..4f8ca86 100644 --- a/evo/main_res.py +++ b/evo/main_res.py @@ -133,8 +133,8 @@ def run(args: argparse.Namespace) -> None: sys.exit() logger.debug(SEP) - logger.debug("Aggregated dataframe:\n{}".format( - df.to_string(line_width=80))) + logger.debug("Aggregated dataframe:\n%s", + df.to_string(line_width=80, max_colwidth=40)) # show a statistics overview logger.debug(SEP)