Add log statement

This commit is contained in:
Vishnu Mohandas 2020-11-22 14:27:43 +05:30
parent 059177811a
commit 792069fef1

View file

@ -169,6 +169,7 @@ class SyncService {
);
if (diff.isNotEmpty) {
await _storeDiff(diff, collectionID);
_logger.info("Updated files in collection " + collectionID.toString());
FileRepository.instance.reloadFiles();
Bus.instance.fire(CollectionUpdatedEvent(collectionID: collectionID));
if (diff.length == _diffLimit) {