Removes console log.

This commit is contained in:
gaba
2016-11-04 14:59:25 -07:00
parent 3c8f310987
commit 9be29b9346
-1
View File
@@ -19,7 +19,6 @@ router.get('/', (req, res, next) => {
}).then(([comments, users, actions]) => {
res.json([...comments,...users,...actions]);
}).catch(error => {
console.log(error);
next(error);
});
});