Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Last active May 12, 2021 15:18
Show Gist options
  • Save Abhayparashar31/457765b1f7b9206cddde1072ef2b2639 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/457765b1f7b9206cddde1072ef2b2639 to your computer and use it in GitHub Desktop.
import logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', datefmt='%d/%m/%Y %H:%M:%S')
logging.debug('This is Debug Message')
logging.info('This is an info message')
-------------------------CONSOLE OUTPUT------------------
12/05/2021 20:46:41 - root - DEBUG - This is Debug Message
12/05/2021 20:46:41 - root - INFO - This is an info message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment