Last active
July 26, 2019 17:02
-
-
Save nicain/26dc3fbaa8fa515553518743d766d8b6 to your computer and use it in GitHub Desktop.
Tiny Logger Cheat Example
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
logger_name = 'TheName' | |
ch = logging.StreamHandler() | |
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') | |
ch.setFormatter(formatter) | |
logger = logging.getLogger(logger_name) | |
logger.setLevel(logging.INFO) | |
logger.addHandler(ch) | |
logger.propagate = False | |
logger.info('Hello World!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment