Last active
October 9, 2018 09:22
-
-
Save atsuoishimoto/c0a8464ee4147ebdc71854b72305337d to your computer and use it in GitHub Desktop.
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
import logging | |
logger = logging.getLogger('xxx') | |
logging.lastResort.setLevel(logging.DEBUG) # <<<<<< コレ! | |
for lvl in (logging.DEBUG, logging.INFO, | |
logging.WARNING, logging.ERROR, logging.CRITICAL): | |
logger.setLevel(lvl) | |
print(logger.level) | |
logger.debug('debug') | |
logger.info('info') | |
logger.warning('warning') | |
logger.error('error') | |
logger.critical('critical') | |
print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment