This commit is contained in:
Yuri Kuznetsov
2025-05-26 15:32:39 +03:00
parent b16024f205
commit 4100af5ad3
+4 -4
View File
@@ -303,10 +303,10 @@ class SendService
try {
$this->groupAccountService->storeSentMessage($id, $message);
} catch (Exception $e) {
$message = "Could not store sent email; group account {$groupAccount->getId()}); " .
$text = "Could not store sent email; group account {$groupAccount->getId()}); " .
$e->getMessage() . ".";
$this->log->error($message, ['exception' => $e]);
$this->log->error($text, ['exception' => $e]);
}
}
@@ -320,10 +320,10 @@ class SendService
try {
$this->personalAccountService->storeSentMessage($id, $message);
} catch (Exception $e) {
$message = "Could not store sent email; personal account {$personalAccount->getId()}; " .
$text = "Could not store sent email; personal account {$personalAccount->getId()}; " .
$e->getMessage() . ".";
$this->log->error($message, ['exception' => $e]);
$this->log->error($text, ['exception' => $e]);
}
}
}