Skip to content

Commit

Permalink
Merge pull request #315 from rfbgo/analyze_print
Browse files Browse the repository at this point in the history
Make analyze always print result file to screen
  • Loading branch information
douglasjacobsen authored Nov 13, 2023
2 parents 6a704d1 + ffe1ad8 commit 9287050
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 9287050

Please sign in to comment.