From cc98ca70d592e5d7e40dcdd47836362390495b0b Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Thu, 5 Jun 2025 08:50:37 +0530 Subject: [PATCH] Log scheduling --- mobile/lib/services/memories_cache_service.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mobile/lib/services/memories_cache_service.dart b/mobile/lib/services/memories_cache_service.dart index 6f3534ec4f..0492001a76 100644 --- a/mobile/lib/services/memories_cache_service.dart +++ b/mobile/lib/services/memories_cache_service.dart @@ -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", + ); } }