Skip to content

Instantly share code, notes, and snippets.

@jftuga
Created February 22, 2025 19:46
Show Gist options
  • Save jftuga/cab2d01b7ca6d8ced9dcdc890ae074a2 to your computer and use it in GitHub Desktop.
Save jftuga/cab2d01b7ca6d8ced9dcdc890ae074a2 to your computer and use it in GitHub Desktop.
Python Logging
# python logging for AWS Lambda function
import logging
# boto3 internally uses DEBUG and INFO; therefore start with WARNING level
logging.basicConfig(level=logging.WARNING)
def lambda_handler(event, context):
logging.warning(f"{event=}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment