From e4eb0cc544a1fcfd0c1c58f6f8390903d9f10468 Mon Sep 17 00:00:00 2001 From: nicholas Date: Tue, 7 Jan 2020 11:32:59 -0500 Subject: [PATCH] Stop consoling full responses. --- src/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/index.js b/src/index.js index b3b4d23..1f85168 100644 --- a/src/index.js +++ b/src/index.js @@ -91,8 +91,6 @@ app.post('/', async (req, res, next) => { const response = await fetch(endpoint, payload) .then(res => res.json()); - console.log(response); - if (!response.ok) console.log(response); if (response.ok) console.log('\non '+moment().format('dddd, MMMM Do YYYY, h:mma').toLowerCase()+' a card was drawn from Slack');