Avoid logging the note's value

Urgh, so stupid.
This commit is contained in:
Vishesh Handa
2021-09-17 08:35:58 +02:00
parent 4daea0a14f
commit af7665bc5a

View File

@ -64,7 +64,7 @@ class NoteStorage {
note.apply(loadState: NoteLoadState.Error);
return Result(note.loadState);
}
Log.d("Note modified: $note.filePath");
Log.d("Note modified: ${note.filePath}");
}
var fpLowerCase = note.filePath.toLowerCase();