From cf53dfe3f9c3c823ff1cd7f4606be92cf5a47884 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Fri, 9 Aug 2024 14:10:58 +0200 Subject: [PATCH] better logging --- internal/calendar/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/calendar/service.go b/internal/calendar/service.go index fa8f4b5..d09f024 100644 --- a/internal/calendar/service.go +++ b/internal/calendar/service.go @@ -25,7 +25,7 @@ type Service struct { func NewService(ctx context.Context, credJson string, opts ...Option) (*Service, error) { b := []byte(credJson) - log.Println(credJson) + log.Printf("%+v", credJson) config, err := google.ConfigFromJSON(b, calendar.CalendarReadonlyScope) if err != nil {