Skip to content

Commit

Permalink
Limit evo_res --verbose column content (#676)
Browse files Browse the repository at this point in the history
Less spam on stdout by raw value arrays. The output is just to provide a
small overview.
  • Loading branch information
MichaelGrupp authored Jun 12, 2024
1 parent fb57510 commit 700247d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evo/main_res.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 700247d

Please sign in to comment.