We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0756184 commit 641c2eaCopy full SHA for 641c2ea
orcid-scheduler-web/src/main/java/org/orcid/scheduler/email/cli/manager/EmailMessageSenderImpl.java
@@ -298,7 +298,9 @@ private String encryptAndEncodePutCode(Long putCode) {
298
@Override
299
public void sendEmailMessages() {
300
List<Object[]> orcidsWithUnsentNotifications = new ArrayList<Object[]>();
301
+ LOGGER.info("Searching for records with unsent notifications");
302
orcidsWithUnsentNotifications = notificationDaoReadOnly.findRecordsWithUnsentNotifications();
303
+ LOGGER.info("Records with unsent notifications: " + orcidsWithUnsentNotifications.size());
304
305
for (final Object[] element : orcidsWithUnsentNotifications) {
306
String orcid = (String) element[0];
0 commit comments