Last active
November 21, 2021 04:55
-
-
Save guissalustiano/792b79a585c584a8d0aaf26d0a0034c2 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() | |
logger.setLevel(logging.DEBUG) | |
logger.debug('Isso é uma log de debug') | |
logger.info('Isso é uma log de info') | |
logger.warning('Isso é uma log de warning') | |
logger.error('Isso é uma log de erro') | |
logger.debug('Chamado em %s', __name__) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment