mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-03 14:06:51 +08:00
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:
@ -260,13 +260,13 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
|
|||||||
);
|
);
|
||||||
_ignoredFiles.add(ignoredFile);
|
_ignoredFiles.add(ignoredFile);
|
||||||
|
|
||||||
Log.v("Ignoring file", props: {
|
// Log.v("Ignoring file", props: {
|
||||||
"path": ignoredFile.filePath,
|
// "path": ignoredFile.filePath,
|
||||||
"reason": ignoredFile.reason,
|
// "reason": ignoredFile.reason,
|
||||||
});
|
// });
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Log.v("Found file", props: {"path": fsEntity.path});
|
// Log.v("Found file", props: {"path": fsEntity.path});
|
||||||
_addNoteListeners(note);
|
_addNoteListeners(note);
|
||||||
|
|
||||||
_notes.add(note);
|
_notes.add(note);
|
||||||
|
Reference in New Issue
Block a user