Last active
August 25, 2016 10:02
-
-
Save jezeniel/c660342cf794007485330e6af342470a to your computer and use it in GitHub Desktop.
Django logging debug
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 | |
# Just a simple way to output or print data on the console's stdout | |
logger = logging.getLogger('django') | |
logger.info("TEST") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment