Skip to content

Commit

Permalink
Make analyze always print result file to screen
Browse files Browse the repository at this point in the history
  • Loading branch information
rfbgo committed Nov 13, 2023
1 parent 83ebed9 commit ffe1ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ramble/ramble/workspace/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,9 +1056,9 @@ def dump_results(self, output_formats=['text']):
if not results_written:
logger.die('Results were not written.')

logger.msg('Results are written to:')
logger.all_msg('Results are written to:')
for out_file in results_written:
logger.msg(f' {out_file}')
logger.all_msg(f' {out_file}')

return filename_base

Expand Down

0 comments on commit ffe1ad8

Please sign in to comment.