According to the logging documentation, the default logging level is WARNING. So, if you do not change the logging level, it will not print the INFO message. There are 5 levels: DEBUG, INFO, WARNING, ERROR, CRITICAL. If you want to output detailed information, you can use DEBUG. However, DEBUG is used when the diagnosis of problems is needed.
If you want to print the INFO message, you need to set the level to INFO.
Here is an example that sets the level to INFO:
import logging
logging.basicConfig(format='%(asctime)s %(levelname)s:%(message)s', level=logging.INFO)