Chill out logging of note content a little

This commit is contained in:
Maximilian Friedersdorff 2025-09-30 16:33:29 +01:00
parent 94735318b6
commit 8340647f08

View file

@ -104,7 +104,7 @@ func (ns *NoteStore) GetOne(owner string, uid string) (*Note, bool) {
for _, note := range notes {
if note.Uid == uid {
log.Printf("Found single note during GetOne %+v", note)
log.Printf("Found single note during GetOne %s", note.Title)
return note, true
}
}