chore: Remove debug log for merged calendars directory

- Eliminated console log statement that outputs the merged calendars directory path.
- Cleans up the server output and reduces unnecessary logging.
This commit is contained in:
Ryan Mwangi 2024-11-06 15:30:19 +03:00
parent 7bb3811a4d
commit 9f036b43cd
1 changed files with 0 additions and 2 deletions

View File

@ -13,8 +13,6 @@ const MERGED_CALENDARS_DIR = path.join(__dirname, process.env.NODE_ENV === 'test
? 'temp_test_calendar'
: 'calendar');
console.log(`Merged calendars directory: ${MERGED_CALENDARS_DIR}`);
// Ensure the merged calendars directory exists
if (!fs.existsSync(MERGED_CALENDARS_DIR)) {