Mercurial > code > home > repos > gcalendarwatch
changeset 74:ed7f655f22b8
log
author | drewp@bigasterisk.com |
---|---|
date | Fri, 06 Sep 2024 17:51:15 -0700 |
parents | 50ddf6a48816 |
children | 5354739c9b0a |
files | calsync/gcalclient/listevents.go |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/calsync/gcalclient/listevents.go Fri Sep 06 17:33:08 2024 -0700 +++ b/calsync/gcalclient/listevents.go Fri Sep 06 17:51:15 2024 -0700 @@ -47,7 +47,7 @@ pageToken := "" for { - log.Println(M.Prefix(cal), "getting another page", shortDebugHash(pageToken)) + log.Println(M.Prefix(cal), "getting another page (pageToken=", shortDebugHash(pageToken),")") pageResult, err := call(pageToken).Do() if err != nil { return nil, "", err @@ -77,6 +77,6 @@ } pageToken = pageResult.NextPageToken } - log.Println(M.Prefix(cal), "total events read: ", len(events), "with syncToken", syncToken) + log.Println(M.Prefix(cal), "total events read:", len(events), "with syncToken", syncToken) return events, syncToken, nil }