We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60dd637 commit df5df50Copy full SHA for df5df50
runner.py
@@ -1438,4 +1438,8 @@ def run(self):
1438
except BaseException as e:
1439
error_helpers.log_error('Base exception occured in runner.py: ', e, successful_run_id)
1440
finally:
1441
- if args.print_logs: print("Container logs:", runner.get_logs())
+ if args.print_logs:
1442
+ for container_id, std_out in runner.get_logs().items():
1443
+ print(f"Container logs of '{container_id}':")
1444
+ print(std_out)
1445
+ print(f"\n-----------------------------\n")
0 commit comments