$logger->debug('Skipping '.get_class($this).' job with ID '.$this->getId().' because another job with the same class is already running',['app'=>'cron']);
return;
}
try{
$jobStartTime=$this->time->getTime();
$logger->debug('Run '.get_class($this).' job with ID '.$this->getId(),['app'=>'cron']);
@ -132,6 +138,25 @@ abstract class Job implements IJob {