Skip to content

Instantly share code, notes, and snippets.

@chatterton
chatterton / logging.py
Last active December 31, 2019 22:29
logging to stdout in a django test
def setUp(self):
## Add this part
import logging, sys
logger = logging.getLogger()
logger.level = logging.DEBUG
stream_handler = logging.StreamHandler(sys.stdout)
logger.addHandler(stream_handler)