We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8843e43 commit 6235fbeCopy full SHA for 6235fbe
common/graphHelper.js
@@ -67,7 +67,7 @@ GraphHelper.prototype = {
67
68
res.on('data', chunk => endpointData += chunk);
69
res.on('end', () => {
70
- context.log(endpointData);
+ // context.log(endpointData);
71
if (res.statusCode === 200) callback(null, JSON.parse(endpointData));
72
else callback(JSON.parse(endpointData), null);
73
});
0 commit comments