mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 09:47:35 +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) {
|
if (fsEntity is Directory) {
|
||||||
var subFolder = NotesFolderFS(this, fsEntity.path, settings);
|
var subFolder = NotesFolderFS(this, fsEntity.path, settings);
|
||||||
if (subFolder.name.startsWith('.')) {
|
if (subFolder.name.startsWith('.')) {
|
||||||
Log.v("Ignoring Folder", props: {
|
// Log.v("Ignoring Folder", props: {
|
||||||
"path": fsEntity.path,
|
// "path": fsEntity.path,
|
||||||
"reason": "Hidden folder",
|
// "reason": "Hidden folder",
|
||||||
});
|
// });
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Log.v("Found Folder", props: {"path": fsEntity.path});
|
Log.v("Found Folder", props: {"path": fsEntity.path});
|
||||||
|
Reference in New Issue
Block a user