Last active
July 20, 2016 18:35
-
-
Save artschwagerb/ff91ac457ce82297dcb6524b3c27c4f2 to your computer and use it in GitHub Desktop.
Python Logging
This file contains 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
import logging | |
# Standard instance of a logger with __name__ | |
logger = logging.getLogger(__name__) | |
# choose your own adventure | |
logger.info('message goes here') | |
logger.debug('message goes here') | |
logger.warning('message goes here') | |
logger.exception('message goes here') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment