Remove the extra verbose logs

They were just too much.
This commit is contained in:
Vishesh Handa
2020-03-21 00:46:03 +01:00
parent eb7d7dc2e7
commit 613afee32e

View File

@ -156,7 +156,7 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
} }
if (fsEntity is Directory) { if (fsEntity is Directory) {
Fimber.d("Found directory ${fsEntity.path}"); //Fimber.d("Found directory ${fsEntity.path}");
var subFolder = NotesFolderFS(this, fsEntity.path); var subFolder = NotesFolderFS(this, fsEntity.path);
if (subFolder.name.startsWith('.')) { if (subFolder.name.startsWith('.')) {
continue; continue;
@ -173,10 +173,10 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
var note = Note(this, fsEntity.path); var note = Note(this, fsEntity.path);
if (!note.filePath.toLowerCase().endsWith('.md')) { if (!note.filePath.toLowerCase().endsWith('.md')) {
Fimber.d("Ignoring file ${fsEntity.path}"); //Fimber.d("Ignoring file ${fsEntity.path}");
continue; continue;
} }
Fimber.d("Found file ${fsEntity.path}"); //Fimber.d("Found file ${fsEntity.path}");
note.addModifiedListener(_noteModified); note.addModifiedListener(_noteModified);
_notes.add(note); _notes.add(note);