Log exact times frames within which the photos are fetched
This commit is contained in:
parent
fb2600d1b1
commit
89f201161c
1 changed files with 2 additions and 2 deletions
|
@ -175,9 +175,9 @@ class SyncService {
|
|||
Future<void> _loadAndStorePhotos(
|
||||
int fromTime, int toTime, Set<String> 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));
|
||||
|
|
Loading…
Add table
Reference in a new issue