Skip to content

Instantly share code, notes, and snippets.

@dapperfu
Created December 31, 2015 18:12
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 dapperfu/84226948a099666fb7be to your computer and use it in GitHub Desktop.
Save dapperfu/84226948a099666fb7be to your computer and use it in GitHub Desktop.
Quick and Dirty logger setup.
"""
Logging
"""
import logging
# Setup logging.
log=logging.getLogger(__name__)
critical = log.critical
error = log.error
warn = log.warning
info = log.info
debug = log.debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment