I recently set up the Scheduler add on and set up my rake task, 'rake cron_jobs:my_task'.
When I test it with 'heroku run rake cron_jobs:my_task', it works fine.
The scheduler also claims it ran when it was supposed to, and is scheduled to run again, but there's no logging associated with the process the way https://devcenter.heroku.com/articles/scheduler#inspecting-output says there should be.
'heroku ps' shows no scheduled dynos, 'heroku logs --ps scheduler.1' has no output.
What am I missing?
heroku logs --ps scheduler.1 -a myapp
. Unfortunately, once the scheduler dyno has finished executing the task, it spins down and I don't think there's a way to inspect its output.