Created
August 9, 2016 10:37
-
-
Save Drunkar/8246c7a5975936b98363e1f8d0699154 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 | |
logger = logging.getLogger("")logger.setLevel(logging.DEBUG) | |
stream_handler = logging.StreamHandler() | |
stream_handler.setLevel(logging.DEBUG) | |
logger.addHandler(stream_handler) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment