From d021c9b4ae242c4fc53ffafbe92db098b9710b31 Mon Sep 17 00:00:00 2001 From: chamakura Date: Sat, 4 Jul 2020 20:23:09 -0700 Subject: [PATCH] Removing debug log statements --- modules/default/calendar/calendarfetcher.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/default/calendar/calendarfetcher.js b/modules/default/calendar/calendarfetcher.js index 3676b5a8..acae13dc 100644 --- a/modules/default/calendar/calendarfetcher.js +++ b/modules/default/calendar/calendarfetcher.js @@ -187,11 +187,6 @@ const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumNu const pastLocal = pastMoment.subtract(past.getTimezoneOffset(), "minutes").toDate(); const futureLocal = futureMoment.subtract(future.getTimezoneOffset(), "minutes").toDate(); const dates = rule.between(pastLocal, futureLocal, true, limitFunction); - if (getTitleFromEvent(event).search("Manageando") > -1) { - console.log(startDate); - console.log(event); - console.log(rule); - } // The "dates" array contains the set of dates within our desired date range range that are valid // for the recurrence rule. *However*, it's possible for us to have a specific recurrence that