diff --git a/src/Command/DaemonCommand.php b/src/Command/DaemonCommand.php index c7be627..5f6f4c8 100644 --- a/src/Command/DaemonCommand.php +++ b/src/Command/DaemonCommand.php @@ -49,6 +49,7 @@ class DaemonCommand extends Command if(!empty($jobsToRun)) { foreach($jobsToRun as $job) { $jobRepo->setJobRunning($job, true); + $output->writeln('Runnig Job ' . $job); $pid = pcntl_fork(); if($pid == -1) { $jobRepo->RunJob($job);