diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2021-02-07 13:53:34 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2021-02-07 13:53:34 +0000 |
commit | 7202e41971c5829e4ce678aac4b3f53e2224a5eb (patch) | |
tree | 3302f755bee4113848037222a42e2b1c7a635ec2 /routes.js | |
parent | 4c25ce5460325e02ec6badbc5e19fd94625c89be (diff) |
Removed some logging
Diffstat (limited to 'routes.js')
-rwxr-xr-x | routes.js | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -613,7 +613,6 @@ router.get('/exportevent/:eventID', (req, res) => { }) .populate('eventGroup') .then((event) => { - console.log(event); if (event) { // Create a new icalGenerator... generator const cal = icalGenerator({ @@ -637,7 +636,6 @@ router.get('/exportevent/:eventID', (req, res) => { }); // Stringify it! let string = cal.toString(); - console.log(JSON.stringify(string)); res.send(string); } }) |