mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-27 17:29:50 +08:00
Avoid annoying log statement
The reason should be saved in some other place so the user can know what is going on. The debug logs get cluttered with this and this would leak the folder names.
This commit is contained in:
@ -220,10 +220,10 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
|
||||
if (fsEntity is Directory) {
|
||||
var subFolder = NotesFolderFS(this, fsEntity.path, settings);
|
||||
if (subFolder.name.startsWith('.')) {
|
||||
Log.v("Ignoring Folder", props: {
|
||||
"path": fsEntity.path,
|
||||
"reason": "Hidden folder",
|
||||
});
|
||||
// Log.v("Ignoring Folder", props: {
|
||||
// "path": fsEntity.path,
|
||||
// "reason": "Hidden folder",
|
||||
// });
|
||||
continue;
|
||||
}
|
||||
Log.v("Found Folder", props: {"path": fsEntity.path});
|
||||
|
Reference in New Issue
Block a user