From 8340647f08db6e1f7b418d0f836be662df80bbb3 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Tue, 30 Sep 2025 16:33:29 +0100 Subject: [PATCH] Chill out logging of note content a little --- internal/notes/notes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }