When I log an event with logging.info, it doesn\'t appear in the Python terminal.
logging.info
import logging logging.info(\'I am info\') # no output
The root logger always defaults to WARNING level. Try calling
logging.getLogger().setLevel(logging.INFO)
and you should be fine.