Remove unnecessary log

This commit is contained in:
2026-06-28 21:44:38 +02:00
parent a2d379100e
commit 0bc9c49b7f
@@ -30,7 +30,6 @@ public class WhatsAppNotifier {
ArrayList<WhatsAppReminder> reminders = TippligaSQLConnector.getInstance().getNextWhatsAppReminders(24);
reminders.addAll(TippligaSQLConnector.getInstance().getNextWhatsAppReminders(2));
reminders.forEach(reminder -> {
logger.info("Sende WhatsApp Erinnerung an " + reminder.username());
boolean success = sendMessage(reminder);
if (success) {
markReminderAsSent(reminder);