1
0
Fork 0

add logging to ensure file creation logic is working

This commit is contained in:
Ryan Mwangi 2024-10-31 15:24:02 +03:00
parent 3d62557fa3
commit 88ab9c53a1
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ app.post('/merge', async (req, res) => {
};
})
.catch((error) => {
console.error(error);
console.error(`Error fetching calendar from ${calendar.url}:`, error);
return null;
});
});