No handlers could be found for logger “apscheduler.executors.default”?

Call logging.basicConfig() before instantiating the scheduler. That lets you see what the real problem is. 

from apscheduler.schedulers.blocking import BlockingScheduler

import logging
logging.basicConfig()
原文地址:https://www.cnblogs.com/linkxu1989/p/10290731.html