Mercurial > code > home > repos > gcalendarwatch
changeset 62:465defa3f956
more logging
author | drewp@bigasterisk.com |
---|---|
date | Fri, 06 Sep 2024 16:43:31 -0700 |
parents | 8aee4f5c4bdd |
children | 19e3def953e1 |
files | calsync/gcalclient/listevents.go |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/calsync/gcalclient/listevents.go Fri Sep 06 16:43:14 2024 -0700 +++ b/calsync/gcalclient/listevents.go Fri Sep 06 16:43:31 2024 -0700 @@ -10,7 +10,9 @@ func (gc *GCalClient) ListEventsInRange(cal M.MongoCal, t1, t2 time.Time) ( events []CalendarEvent, nextSyncToken string, err error) { - log.Println(M.Prefix(cal), "ListEventsInRange", t1, "to", t2) + log.Println(M.Prefix(cal), "ListEventsInRange", + t1.Format(time.RFC3339), "to", + t2.Format(time.RFC3339)) call := func(pageToken string) *calendar.EventsListCall { return rangedEventsCall(gc.srv, cal.GoogleId, t1, t2, pageToken)