mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 11:33:34 +08:00
Remove the extra verbose logs
They were just too much.
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user