Skip to content

Instantly share code, notes, and snippets.

@ivangonekrazy
Created April 7, 2015 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivangonekrazy/f1042ce2414a3186f980 to your computer and use it in GitHub Desktop.
Save ivangonekrazy/f1042ce2414a3186f980 to your computer and use it in GitHub Desktop.
import logging
# Get the top-level logger object
log = logging.getLogger()
# make it print to the console.
console = logging.StreamHandler()
log.addHandler(console)
# emit a warning to the puny Humans
log.warn('Citizens of Earth, be warned!')
## Citizens of Earth, be warned!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment