diff --git a/lib/services/sync_service.dart b/lib/services/sync_service.dart index fbf54e45ea9b24912b670e3d8385b0d8570ced31..c70b6a13643055be9e48c5a593f1389dd4b89de9 100644 --- a/lib/services/sync_service.dart +++ b/lib/services/sync_service.dart @@ -175,9 +175,9 @@ class SyncService { Future _loadAndStorePhotos( int fromTime, int toTime, Set existingLocalFileIDs) async { _logger.info("Loading photos from " + - getMonthAndYear(DateTime.fromMicrosecondsSinceEpoch(fromTime)) + + DateTime.fromMicrosecondsSinceEpoch(fromTime).toString() + " to " + - getMonthAndYear(DateTime.fromMicrosecondsSinceEpoch(toTime))); + DateTime.fromMicrosecondsSinceEpoch(toTime).toString()); final files = await getDeviceFiles(fromTime, toTime); if (files.isNotEmpty) { Bus.instance.fire(SyncStatusUpdate(SyncStatus.applying_local_diff));