forked from friendica/friendica-addons
Fix logging
This commit is contained in:
parent
81dc1e5eb1
commit
c185bab922
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue