Esempio n. 1
0
 /**
  * @Flow\After("Ttree\Scheduler\Aspect\LoggingAspect->allTasks")
  * @param JoinPoint $jointPoint
  */
 public function logTaskExecutionEnd(JoinPoint $jointPoint)
 {
     /** @var Task $task */
     $task = $jointPoint->getProxy();
     $this->systemLogger->log(sprintf('Task "%s" execution finished', get_class($task)));
 }