Modify logs on MailService

This commit is contained in:
MangKyu
2022-04-05 19:58:42 +09:00
parent 4a12e37afc
commit 4270f1e434

View File

@@ -47,7 +47,7 @@ public class MailService {
messageHelper.setText(mailText, true); messageHelper.setText(mailText, true);
mailSender.send(message); mailSender.send(message);
} catch (final MessagingException e) { } catch (final MessagingException e) {
log.error("send mail fail: ", e); log.error("send mail fail: {}", userEmail, e);
} }
} }