We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5386cc2 + 656b750 commit 699e067Copy full SHA for 699e067
tasks/lambda_deploy.js
@@ -63,7 +63,8 @@ module.exports = function (grunt) {
63
if(err.statusCode === 404) {
64
grunt.fail.warn('Unable to find lambda function ' + deploy_function + ', verify the lambda function name and AWS region are correct.');
65
} else {
66
- grunt.fail.warn('AWS API request failed, check your AWS credentials, region and permissions are correct.');
+ grunt.log.error('AWS API request failed with ' + err.statusCode + ' - ' + err);
67
+ grunt.fail.warn('Check your AWS credentials, region and permissions are correct.');
68
}
69
70
0 commit comments