Skip to content

Instantly share code, notes, and snippets.

@keithrozario
Created April 30, 2020 10:43
Show Gist options
  • Save keithrozario/ebdcdada24f18d24bfd0032ec272763f to your computer and use it in GitHub Desktop.
Save keithrozario/ebdcdada24f18d24bfd0032ec272763f to your computer and use it in GitHub Desktop.
lambda_logging
import logging
logger = logging.getLogger()
logger.setLevel(logging.INFO)
def main(event, context):
logger.info("This is an info message")
logger.warning("This is a warning message")
logger.debug("This is a debug message")
logger.error("This is an error message")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment