in src/java/org/apache/fulcrum/quartz/impl/QuartzSchedulerImpl.java [245:259]
public void jobWasExecuted(JobExecutionContext context, JobExecutionException ex)
{
if (ex != null)
{
String msg = "Executing the job '" + context.getJobDetail().getKey() + "' failed";
getLogger().error(msg, ex.getCause());
}
else
{
if (getLogger().isDebugEnabled())
{
getLogger().debug("Executing the job '" + context.getJobDetail().getKey() + "' took " + context.getJobRunTime() + " ms");
}
}
}