Created
December 15, 2016 03:52
-
-
Save alanduan/84af2e025189a03fbc3bbde5a2d77932 to your computer and use it in GitHub Desktop.
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 | |
logger = logging.getLogger(__file__) | |
logging.basicConfig( | |
level=logging.DEBUG, | |
format='%(asctime)s - %(levelname)s - %(message)s', | |
datefmt='%Y-%m-%d %H:%M:%S') | |
logger.info('this is a test message') | |
logger.warn('this is a warning message') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment