We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6efb27 + 67343bd commit e65861eCopy full SHA for e65861e
1 file changed
Classes/Command/JobCommandController.php
@@ -88,7 +88,8 @@ public function workCommand($queue, $exitAfter = null, $limit = null, $verbose =
88
$numberOfJobExecutions ++;
89
$this->outputLine('<error>%s</error>', [$exception->getMessage()]);
90
if ($verbose && $exception->getPrevious() instanceof \Exception) {
91
- $this->outputLine(' Reason: %s', [$exception->getPrevious()->getMessage()]);
+ $this->outputLine('Reason:');
92
+ $this->outputLine($exception->getPrevious()->getMessage());
93
}
94
} catch (\Exception $exception) {
95
$this->outputLine('<error>Unexpected exception during job execution: %s, aborting...</error>', [$exception->getMessage()]);
0 commit comments