Skip to content

Commit

Permalink
cli: richer logs
Browse files Browse the repository at this point in the history
* Closes reanahub#348
  • Loading branch information
Rokas Maciulaitis committed Jan 15, 2020
1 parent 037c10a commit 517a08c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reana_client/cli/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,8 @@ def workflow_logs(ctx, workflow, access_token, json_format): # noqa: D301
click.secho('job logs'.upper(), fg='green')
first = False
click.secho('job id: {}'.format(job_id), fg='green')
click.echo(job_logs)
for key, value in job_logs.items():
click.echo('{}: {}'.format(key.upper(), value))
if workflow_logs.get('engine_specific', None):
click.echo('\n')
click.secho('engine internal logs'.upper(), fg='green')
Expand Down

0 comments on commit 517a08c

Please sign in to comment.