I (or rather, the guy who knew anything about Quartz who subsequently left the company) set up separate Quartz triggers every minute for the next 10 minutes, but it appears that a number of them are getting ignored. The triggers are very basic - they just increment a counter and print out the time of day (this is for a junit test).
I print out the triggers.getStartTime() before I start the job, and they look fine (exactly 1 minute apart), then I start the job and sleep the current thread. After 10 minutes, I look at the counter, and it appears it only triggered 4 or 5 times. I have the Job class print out the current time each time it fires, and it looks like it fires every other time.
What can I do to figure out why it isn't firing? Is there some log file I can look at, or a way to increase the amount of debugging Quartz provides?