Skip to content

Instantly share code, notes, and snippets.

@Kif11
Last active August 31, 2016 06:57
Show Gist options
  • Save Kif11/af7dd6d2e7d52f7fd23e9233d6b3228a to your computer and use it in GitHub Desktop.
Save Kif11/af7dd6d2e7d52f7fd23e9233d6b3228a to your computer and use it in GitHub Desktop.
Simple logger import and config
import logging
logging.basicConfig(format='%(levelname)s: %(message)s')
log = logging.getLogger(__file__)
log.setLevel(logging.INFO)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment