Skip to content

Commit

Permalink
Better message
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Dec 20, 2023
1 parent 3b7af57 commit 7158fbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ private void sendAddWorksToRecordEmailAttempt(int addWorksAttemptEmail, ProfileE
if (Features.SEND_ADD_WORKS_EMAILS.isActive()) {
LOGGER.info("Sending 'Add works' email reminder for {} days", addWorksAttemptEmail);
List<Pair<String, String>> elements = profileDaoReadOnly.findEmailsToSendAddWorksEmail(addWorksAttemptEmail);
LOGGER.debug("Found {} emails to send" , elements.size());
LOGGER.debug("Found {} add works reminders to send" , elements.size());
for (Pair<String, String> element: elements) {
String email = element.getLeft();
String userOrcid = element.getRight();
Expand Down

0 comments on commit 7158fbf

Please sign in to comment.