Log the exception message too.
This commit is contained in:
parent
80e5359a9f
commit
1960905877
1 changed files with 4 additions and 1 deletions
|
|
@ -136,7 +136,10 @@ abstract class AbstractQueueWorker extends AbstractWorker
|
|||
$this->returnToInputQueue($item);
|
||||
|
||||
$this->logger->error(
|
||||
'Exception encountered while processing message queue.',
|
||||
sprintf(
|
||||
'Exception encountered while processing message queue: %s',
|
||||
$e->getMessage()
|
||||
),
|
||||
[
|
||||
'file' => $e->getFile(),
|
||||
'line' => $e->getLine(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue