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