Skip to content

Instantly share code, notes, and snippets.

@guissalustiano
Last active November 21, 2021 04:55
Show Gist options
  • Save guissalustiano/792b79a585c584a8d0aaf26d0a0034c2 to your computer and use it in GitHub Desktop.
Save guissalustiano/792b79a585c584a8d0aaf26d0a0034c2 to your computer and use it in GitHub Desktop.
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