From 31262e5f7d2ea4df7f31dd658a6443f3fec7d904 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sun, 1 Mar 2020 14:53:11 +0100 Subject: [PATCH] Add some debug messages --- lib/state_container.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/state_container.dart b/lib/state_container.dart index 349bb853..f0d7babc 100644 --- a/lib/state_container.dart +++ b/lib/state_container.dart @@ -56,7 +56,10 @@ class StateContainer with ChangeNotifier { void _loadFromCache() async { await _notesCache.load(appState.notesFolder); + Fimber.i("Finished loading the notes cache"); + await _loadNotes(); + Fimber.i("Finished loading all the notes"); } void removeExistingRemoteClone() async {