diff --git a/routes/api/stream/index.js b/routes/api/stream/index.js index 4b7c3e6fa..c63bf871d 100644 --- a/routes/api/stream/index.js +++ b/routes/api/stream/index.js @@ -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); }); });