Last active
May 12, 2021 15:18
-
-
Save Abhayparashar31/457765b1f7b9206cddde1072ef2b2639 to your computer and use it in GitHub Desktop.
This file contains hidden or 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(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