From 9be29b93467a173d5873c7ea1a0679c0c2045b10 Mon Sep 17 00:00:00 2001 From: gaba Date: Fri, 4 Nov 2016 14:59:25 -0700 Subject: [PATCH] Removes console log. --- routes/api/stream/index.js | 1 - 1 file changed, 1 deletion(-) 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); }); });