Skip to content

Commit

Permalink
[Minor] OperationsLog only sends encrypted mails
Browse files Browse the repository at this point in the history
  • Loading branch information
eitch committed Jul 11, 2024
1 parent 9aa195d commit 6dc5c02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ private void sendMessageAsMail(LogMessage logMessage) {
logMessage.getUsername(), ISO8601.toString(logMessage.getZonedDateTime()), logMessage.getId(),
logMessage.getMessage(Locale.ENGLISH), stackTrace == null ? "(none)" : stackTrace);

mailHandler.sendMailAsync(this.sendMailsRecipients, subject, text, false);
mailHandler.sendEncryptedMailAsync(this.sendMailsRecipients, subject, text);
}

private static Locator trimAgentLocator(Locator tmp) {
Expand Down

0 comments on commit 6dc5c02

Please sign in to comment.