From 3236f918c14a4218dfe68d85efa9d7962b562ad4 Mon Sep 17 00:00:00 2001 From: Lance Cameron Kidwell Date: Thu, 1 Nov 2018 14:37:56 -0500 Subject: [PATCH] Removes console.log of response --- bullet-train-core.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bullet-train-core.js b/bullet-train-core.js index 5f2f7b0..50bf064 100644 --- a/bullet-train-core.js +++ b/bullet-train-core.js @@ -8,7 +8,6 @@ const BulletTrain = class { this.getJSON = function (url, method) { const { environmentID } = this; - console.log(url); return fetch(url + '?format=json', { method: method || 'GET', headers: { @@ -170,4 +169,4 @@ const BulletTrain = class { module.exports = function ({ fetch }) { return new BulletTrain({ fetch }); -}; \ No newline at end of file +};