From 782e62d56d8bb6f76ffcc11751e035bbf6b1b3e1 Mon Sep 17 00:00:00 2001 From: Ryan Mwangi Date: Mon, 18 Nov 2024 14:07:22 +0300 Subject: [PATCH] refactor:remove logging for ICAL and ICAL.component as it works now --- src/calendarUtil.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/calendarUtil.js b/src/calendarUtil.js index 6a82d00..72d79a8 100644 --- a/src/calendarUtil.js +++ b/src/calendarUtil.js @@ -4,8 +4,6 @@ import path from 'path'; import axios from 'axios'; export const MERGED_CALENDARS_DIR = path.join(process.cwd(), 'calendar'); -console.log('ICAL:', ICAL); -console.log('ICAL.Component:', ICAL.Component); // Ensure the merged calendars directory exists fs.mkdirSync(MERGED_CALENDARS_DIR, { recursive: true });