function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
PrattyPratty 

Track Apex Scheduler

Hello All,

 

I have a written a scheduler for my project. I think it is not working properly, so I want to debug it / keep track on it.

Is there any way / tool present, so that I can track this asynchronous process.

 

Thanks in advance.

Pratty

Best Answer chosen by Admin (Salesforce Developers) 
Avidev9Avidev9
You can use the standard monitoring features.

Setup >> Monitoring >> Apex jobs (this has all the logs related to async processes)
Setup >> Monitoring >> Scheuled jobs(gives info like next job time, last job time etc)

All Answers

Avidev9Avidev9
You can use the standard monitoring features.

Setup >> Monitoring >> Apex jobs (this has all the logs related to async processes)
Setup >> Monitoring >> Scheuled jobs(gives info like next job time, last job time etc)
This was selected as the best answer
Bhawani SharmaBhawani Sharma
Set debug log. Execute job from console, choose Cron as currentTime + 1 minute, check the debug log.