Do not log functions printing startup input
parent
453de6b8ef
commit
62c7f2fa03
|
|
@ -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) => {
|
const events = (_a = (yield CF.describeStackEvents({ StackName: taskDefStackName }).promise()).StackEvents) === null || _a === void 0 ? void 0 : _a.filter((x) => {
|
||||||
x.ResourceStatus === `CREATE_FAILED`;
|
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(events, undefined, 4));
|
||||||
cloud_runner_logger_1.default.log(JSON.stringify(resources, undefined, 4));
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -12,8 +12,6 @@ export class AWSError {
|
||||||
x.ResourceStatus === `CREATE_FAILED`;
|
x.ResourceStatus === `CREATE_FAILED`;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
const resources = (await CF.describeStackResources({ StackName: taskDefStackName }).promise()).StackResources;
|
|
||||||
CloudRunnerLogger.log(JSON.stringify(events, undefined, 4));
|
CloudRunnerLogger.log(JSON.stringify(events, undefined, 4));
|
||||||
CloudRunnerLogger.log(JSON.stringify(resources, undefined, 4));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue