diff --git a/internal/notes/notes.go b/internal/notes/notes.go index 375e192..774956c 100644 --- a/internal/notes/notes.go +++ b/internal/notes/notes.go @@ -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 } }