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
Like @ztyx said that default logger level is WARNING. You have to set it to a lower level
You can do it by using logging.basicConfig and setting logger level:
logging.basicConfig(level=logging.DEBUG)