Remove verbose logs

These make reading the log files in bug reports really hard. Also it
contains some personal info, so I rather not have them.

I can look into another way of showing the user why certain files were
ignored.
This commit is contained in:
Vishesh Handa
2020-10-21 17:08:31 +02:00
parent d1214b8c1b
commit c86e0d278c

View File

@ -260,13 +260,13 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
);
_ignoredFiles.add(ignoredFile);
Log.v("Ignoring file", props: {
"path": ignoredFile.filePath,
"reason": ignoredFile.reason,
});
// Log.v("Ignoring file", props: {
// "path": ignoredFile.filePath,
// "reason": ignoredFile.reason,
// });
continue;
}
Log.v("Found file", props: {"path": fsEntity.path});
// Log.v("Found file", props: {"path": fsEntity.path});
_addNoteListeners(note);
_notes.add(note);