Created
June 27, 2019 22:32
-
-
Save cowlicks/a1cd89bf3e389a099acc298c8bf178bb to your computer and use it in GitHub Desktop.
verbose python logging for debugging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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