diff --git a/app/Console/Command/StartWorkerShell.php b/app/Console/Command/StartWorkerShell.php index 5902cf498..abf344cbd 100644 --- a/app/Console/Command/StartWorkerShell.php +++ b/app/Console/Command/StartWorkerShell.php @@ -78,7 +78,9 @@ class StartWorkerShell extends AppShell try { $job->setStatus(BackgroundJob::STATUS_RUNNING); - CakeLog::info("[JOB ID: {$job->id()}] - started."); + + $command = implode(' ', array_merge([$job->command()], $job->args())); + CakeLog::info("[JOB ID: {$job->id()}] - started command `$command`."); $this->BackgroundJobsTool->update($job); $job->run();