From 613afee32ead76245d686f605d096e8175cd9954 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 21 Mar 2020 00:46:03 +0100 Subject: [PATCH] Remove the extra verbose logs They were just too much. --- lib/core/notes_folder_fs.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/notes_folder_fs.dart b/lib/core/notes_folder_fs.dart index f2861a4e..f3f078b2 100644 --- a/lib/core/notes_folder_fs.dart +++ b/lib/core/notes_folder_fs.dart @@ -156,7 +156,7 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder { } if (fsEntity is Directory) { - Fimber.d("Found directory ${fsEntity.path}"); + //Fimber.d("Found directory ${fsEntity.path}"); var subFolder = NotesFolderFS(this, fsEntity.path); if (subFolder.name.startsWith('.')) { continue; @@ -173,10 +173,10 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder { var note = Note(this, fsEntity.path); if (!note.filePath.toLowerCase().endsWith('.md')) { - Fimber.d("Ignoring file ${fsEntity.path}"); + //Fimber.d("Ignoring file ${fsEntity.path}"); continue; } - Fimber.d("Found file ${fsEntity.path}"); + //Fimber.d("Found file ${fsEntity.path}"); note.addModifiedListener(_noteModified); _notes.add(note);