Skip to content

Instantly share code, notes, and snippets.

@blaix
Last active November 4, 2016 19:05
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 blaix/070cc892acf7f16741aa95068f852d3c to your computer and use it in GitHub Desktop.
Save blaix/070cc892acf7f16741aa95068f852d3c to your computer and use it in GitHub Desktop.
# in importer/logging.py
import logging as log
log.basicConfig(filename='importer.log', level=log.WARNING, format='%(message)s')
# everywhere else:
from importer.logging import log
log.warning('used warning so i could look at the log without clutter from other projects')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment