diff --git a/function-run/nodejs/test/test.js b/function-run/nodejs/test/test.js index 906a5c84..6b6ae4fd 100644 --- a/function-run/nodejs/test/test.js +++ b/function-run/nodejs/test/test.js @@ -2,7 +2,5 @@ module.exports = function (context, callback) { console.log("headers=", JSON.stringify(context.request.headers)); console.log("body=", JSON.stringify(context.request.body)); - //console.log(`Test function entered: ${context.request.body}`); - callback(200, "Hello, world !\n"); }