代码改变世界

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

2019-01-19 10:42  linkxu  阅读(2410)  评论(0编辑  收藏  举报

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()