Fix logging
This commit is contained in:
parent
81dc1e5eb1
commit
c185bab922
1 changed files with 1 additions and 5 deletions
|
@ -116,8 +116,6 @@ function securemail_settings_post(App &$a, array &$b)
|
||||||
*/
|
*/
|
||||||
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
{
|
{
|
||||||
DI::logger()->debug('start securemail', ['email' => $email]);
|
|
||||||
|
|
||||||
if (empty($email->getRecipientUid())) {
|
if (empty($email->getRecipientUid())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -126,7 +124,7 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
|
|
||||||
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
|
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
|
||||||
if (!$enable_checked) {
|
if (!$enable_checked) {
|
||||||
DI::logger()->debug('No check', ['email' => $email]);
|
DI::logger()->debug('No securemail enabled.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,8 +152,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
|
|
||||||
$email = $email->withMessage($armored_encrypted, null);
|
$email = $email->withMessage($armored_encrypted, null);
|
||||||
|
|
||||||
DI::logger()->debug('End securemail', ['email' => $email]);
|
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
|
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue