mirror of
https://github.com/etesync/android
synced 2025-01-11 00:01:12 +00:00
Add log stating the amount of entries fetched.
This commit is contained in:
parent
aff3be7af4
commit
5ec0dd45b5
@ -254,6 +254,8 @@ abstract public class SyncManager {
|
|||||||
|
|
||||||
protected void fetchEntries() throws Exceptions.HttpException, ContactsStorageException, CalendarStorageException, Exceptions.IntegrityException {
|
protected void fetchEntries() throws Exceptions.HttpException, ContactsStorageException, CalendarStorageException, Exceptions.IntegrityException {
|
||||||
remoteEntries = journal.getEntries(settings.password(), remoteCTag);
|
remoteEntries = journal.getEntries(settings.password(), remoteCTag);
|
||||||
|
|
||||||
|
App.log.info("Fetched " + String.valueOf(remoteEntries.size()) + " entries");
|
||||||
|
|
||||||
if (!remoteEntries.isEmpty()) {
|
if (!remoteEntries.isEmpty()) {
|
||||||
remoteCTag = remoteEntries.get(remoteEntries.size() - 1).getUuid();
|
remoteCTag = remoteEntries.get(remoteEntries.size() - 1).getUuid();
|
||||||
|
Loading…
Reference in New Issue
Block a user