From d2466440f990ab90a16980e099c1c5a545cf43dd Mon Sep 17 00:00:00 2001 From: Malte Delfs Date: Fri, 18 Jun 2021 14:03:31 +0200 Subject: [PATCH] removed debug logging --- lib/calendarClient.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/calendarClient.ts b/lib/calendarClient.ts index 526e1177..fa358fbf 100644 --- a/lib/calendarClient.ts +++ b/lib/calendarClient.ts @@ -153,12 +153,10 @@ const MicrosoftOffice365Calendar = (credential): CalendarApiAdapter => { return Promise.resolve([]); } - console.log("selectedCalendarIds.length: " + selectedCalendarIds.length) return (selectedCalendarIds.length == 0 ? listCalendars().then(cals => cals.map(e => e.externalId)) : Promise.resolve(selectedCalendarIds).then(x => x)).then((ids: string[]) => { const urls = ids.map(calendarId => 'https://graph.microsoft.com/v1.0/me/calendars/' + calendarId + '/events' + filter) - console.log("urls", urls) return Promise.all(urls.map(url => fetch(url, { method: 'get', headers: {