This updates the bootstrapper script to not only push outputs to an S3 storage but also pipe them to the normal log output.
This makes Elyra more usable for users who don't have an easy way to browse their S3 storage.
How was this pull request tested?
This change was manually tested by:
Build a runtime image with the new bootstrapper.py
What changes were proposed in this pull request?
This updates the bootstrapper script to not only push outputs to an S3 storage but also pipe them to the normal log output. This makes Elyra more usable for users who don't have an easy way to browse their S3 storage.
How was this pull request tested?
This change was manually tested by:
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
print("You should see this print") logging.info("You should see this log") raise Exception("Silly error you also should see")