From 2bcb7f3b14f3041bfbbe1b3087a9e150adf2eebf Mon Sep 17 00:00:00 2001 From: Austen Collins Date: Fri, 18 Dec 2015 13:14:22 -0800 Subject: [PATCH] FunctionRuneLambdaNodejs: show error stack --- lib/actions/FunctionRunLambdaNodeJs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/actions/FunctionRunLambdaNodeJs.js b/lib/actions/FunctionRunLambdaNodeJs.js index 44fe97e5b..2f92ffdc6 100644 --- a/lib/actions/FunctionRunLambdaNodeJs.js +++ b/lib/actions/FunctionRunLambdaNodeJs.js @@ -70,6 +70,7 @@ module.exports = function(SPlugin, serverlessPath) { if (err) { SCli.log(chalk.bold('Failed - This Error Was Returned:')); SCli.log(err.message); + SCli.log(err.stack); evt.result.status = 'error'; evt.result.response = err.message; return resolve(evt);