From 4836069fb680ea5259ba5a725ef0e8918871160b Mon Sep 17 00:00:00 2001 From: gaba Date: Fri, 4 Nov 2016 13:36:35 -0700 Subject: [PATCH] Rmeoves console.log --- routes/api/comments/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/api/comments/index.js b/routes/api/comments/index.js index c9a1f0659..df9bbc456 100644 --- a/routes/api/comments/index.js +++ b/routes/api/comments/index.js @@ -31,7 +31,6 @@ router.post('/', (req, res, next) => { comment.save().then(({id}) => { res.status(201).send(id); }).catch(error => { - console.log(error); next(error); });