summaryrefslogtreecommitdiff
path: root/routes.js
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2021-02-07 13:53:34 +0000
committerRaphael Kabo <raphaelkabo@hey.com>2021-02-07 13:53:34 +0000
commit7202e41971c5829e4ce678aac4b3f53e2224a5eb (patch)
tree3302f755bee4113848037222a42e2b1c7a635ec2 /routes.js
parent4c25ce5460325e02ec6badbc5e19fd94625c89be (diff)
Removed some logging
Diffstat (limited to 'routes.js')
-rwxr-xr-xroutes.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/routes.js b/routes.js
index 602b233..448fe09 100755
--- a/routes.js
+++ b/routes.js
@@ -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);
}
})