Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 53e4157

Browse files
committed
Fixed error logging
1 parent b0a9bc8 commit 53e4157

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Helper/WebformHelperSF1601.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,8 @@ public function processJob(Job $job): JobResult {
291291
return JobResult::success();
292292
}
293293
catch (\Exception $e) {
294-
$this->error($e->getMessage(), [
294+
$this->error('Error: @message', [
295+
'@message' => $e->getMessage(),
295296
'handler_id' => 'os2forms_digital_post',
296297
'operation' => 'digital post send',
297298
'webform_submission' => $submission ?? NULL,

0 commit comments

Comments
 (0)