Log scheduling

This commit is contained in:
laurenspriem
2025-06-05 08:50:37 +05:30
parent 544078a40c
commit cc98ca70d5

View File

@@ -317,6 +317,9 @@ class MemoriesCacheService {
timeoutDurationAndroid: const Duration(hours: 16),
);
scheduledDates.add(scheduleTime);
_logger.info(
"Scheduled notification for memory ${memory.id} on date: $scheduleTime",
);
}
}
@@ -385,6 +388,9 @@ class MemoriesCacheService {
timeoutDurationAndroid: const Duration(hours: 17),
);
scheduledPersons.add(memory.personID);
_logger.info(
"Scheduled birthday notification for person ${memory.personName} on date: $scheduleTime",
);
}
}