Forked from niranjv/change_lambda_logger_format.py
Created
November 29, 2017 22:44
-
-
Save Tejadogiparthi/08f595a75934fa7e14919604e20e51be to your computer and use it in GitHub Desktop.
Change Python logger format in AWS Lambda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Python logger in AWS Lambda has a preset format. To change the format of the logging statement, | |
| # remove the logging handler & add a new handler with the required format | |
| import logging | |
| import sys | |
| def setup_logging(): | |
| logger = logging.getLogger() | |
| for h in logger.handlers: | |
| logger.removeHandler(h) | |
| h = logging.StreamHandler(sys.stdout) | |
| # use whatever format you want here | |
| FORMAT = '%(asctime)s %(message)s' | |
| h.setFormatter(logging.Formatter(FORMAT)) | |
| logger.addHandler(h) | |
| logger.setLevel(logging.INFO) | |
| return logger | |
| def lambda_handler(event, context): | |
| logger = setup_logging() | |
| logger.info("This is a test log statement!") | |
| return | |
| # Expected output from Lambda: | |
| # | |
| # START RequestId: 1a2b3c4d-abcd-1234-efgh-1a2b3c4d5e6f Version: $LATEST | |
| # 2017-10-06 22:40:59,653 This is a test log statement! | |
| # END RequestId: 1a2b3c4d-abcd-1234-efgh-1a2b3c4d5e6f | |
| # REPORT RequestId: 1a2b3c4d-abcd-1234-efgh-1a2b3c4d5e6f Duration: 0.41 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 21 MB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment