Skip to content

Instantly share code, notes, and snippets.

@litnimax
Created November 5, 2015 21:48
Show Gist options
  • Select an option

  • Save litnimax/518a4025995d5fcd9019 to your computer and use it in GitHub Desktop.

Select an option

Save litnimax/518a4025995d5fcd9019 to your computer and use it in GitHub Desktop.
logger intro
logger = logging.getLogger(__name__)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment