Do not log functions printing startup input

pull/310/head
Frostebite 2021-12-30 02:07:11 +00:00
parent 453de6b8ef
commit 62c7f2fa03
3 changed files with 1 additions and 5 deletions

2
dist/index.js vendored
View File

@ -970,9 +970,7 @@ class AWSError {
const events = (_a = (yield CF.describeStackEvents({ StackName: taskDefStackName }).promise()).StackEvents) === null || _a === void 0 ? void 0 : _a.filter((x) => {
x.ResourceStatus === `CREATE_FAILED`;
});
const resources = (yield CF.describeStackResources({ StackName: taskDefStackName }).promise()).StackResources;
cloud_runner_logger_1.default.log(JSON.stringify(events, undefined, 4));
cloud_runner_logger_1.default.log(JSON.stringify(resources, undefined, 4));
});
}
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -12,8 +12,6 @@ export class AWSError {
x.ResourceStatus === `CREATE_FAILED`;
},
);
const resources = (await CF.describeStackResources({ StackName: taskDefStackName }).promise()).StackResources;
CloudRunnerLogger.log(JSON.stringify(events, undefined, 4));
CloudRunnerLogger.log(JSON.stringify(resources, undefined, 4));
}
}