From c86e0d278c297be9588d9ea917123f0ab7ece63f Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 21 Oct 2020 17:08:31 +0200 Subject: [PATCH] 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. --- lib/core/notes_folder_fs.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/core/notes_folder_fs.dart b/lib/core/notes_folder_fs.dart index 12abc710..f74f404a 100644 --- a/lib/core/notes_folder_fs.dart +++ b/lib/core/notes_folder_fs.dart @@ -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);