Fix logging

pull/953/head
nupplaPhil 2020-01-31 19:43:34 +01:00
parent 81dc1e5eb1
commit c185bab922
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 1 additions and 5 deletions

View File

@ -116,8 +116,6 @@ function securemail_settings_post(App &$a, array &$b)
*/
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
{
DI::logger()->debug('start securemail', ['email' => $email]);
if (empty($email->getRecipientUid())) {
return;
}
@ -126,7 +124,7 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
if (!$enable_checked) {
DI::logger()->debug('No check', ['email' => $email]);
DI::logger()->debug('No securemail enabled.');
return;
}
@ -154,8 +152,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
$email = $email->withMessage($armored_encrypted, null);
DI::logger()->debug('End securemail', ['email' => $email]);
} catch (Exception $e) {
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
}