Skip to content

Instantly share code, notes, and snippets.

@cowlicks
Created June 27, 2019 22:32
Show Gist options
  • Save cowlicks/a1cd89bf3e389a099acc298c8bf178bb to your computer and use it in GitHub Desktop.
Save cowlicks/a1cd89bf3e389a099acc298c8bf178bb to your computer and use it in GitHub Desktop.
verbose python logging for debugging
import logging
logging.basicConfig(format='%(asctime)s,%(msecs)d %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s',
datefmt='%Y-%m-%d:%H:%M:%S',
level=logging.DEBUG)
logger = logging.getLogger(__name__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment