From b60e760b6eed63a34cd37338c1c54734f171f287 Mon Sep 17 00:00:00 2001 From: bill bittner Date: Mon, 5 Mar 2018 17:07:15 -0800 Subject: [PATCH] removed console logs --- auth/authentication.js | 1 - routes/api-routes.js | 1 - 2 files changed, 2 deletions(-) diff --git a/auth/authentication.js b/auth/authentication.js index 4e8eccf0..290aeac5 100644 --- a/auth/authentication.js +++ b/auth/authentication.js @@ -67,7 +67,6 @@ module.exports = { resolve(channelData); }) .catch(error => { - logger.warn('authenticateChannelCredentials error'); reject(error); }); }); diff --git a/routes/api-routes.js b/routes/api-routes.js index 0097da7a..1182ef72 100644 --- a/routes/api-routes.js +++ b/routes/api-routes.js @@ -178,7 +178,6 @@ module.exports = (app) => { } }) .catch(error => { - console.log('handling error response...'); errorHandlers.handleErrorResponse(originalUrl, ip, error, res); }); });