Created
October 11, 2019 10:40
-
-
Save e-grn/d1d83635388ae8856d0127bf58e48a80 to your computer and use it in GitHub Desktop.
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 | |
# add filemode="w" to overwrite | |
logging.basicConfig(filename="sample.log", level=logging.INFO) | |
logging.debug("This is a debug message") | |
logging.info("Informational message") | |
logging.error("An error has happened!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment