Skip to content

Commit

Permalink
refactor: 로깅 인수 전달 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
limehee committed Jul 19, 2024
1 parent 9c0355f commit 295f5ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void sendBatchEmail(List<EmailTask> emailTasks) throws MessagingException
try {
javaMailSender.send(mimeMessages);
} catch (Exception e) {
log.error("Error sending batch email: " + e.getMessage(), e);
log.error("Error sending batch email: {}", e.getMessage());
}
log.debug("Batch email sent successfully.");
}
Expand Down

0 comments on commit 295f5ca

Please sign in to comment.