You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cli): context providers use dedicated, provided messaging class (#277)
Introduces a dedicated messaging interface for Context Providers. This
is a reduced interface to allow Context Providers send debug messages
and in rare cases info messages.
Use of `ioHelper` in the `provideContextValues` function is currently
still optional until the CloudExecutable supports it as well.
---
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache-2.0 license
---------
Signed-off-by: github-actions <[email protected]>
Co-authored-by: github-actions <[email protected]>
|`CDK_ASSEMBLY_I0150`| Indicates the use of a pre-synthesized cloud assembly directory |`debug`| n/a |
89
+
|`CDK_ASSEMBLY_I0300`| An info message emitted by a Context Provider |`info`| {@link ContextProviderMessageSource} |
90
+
|`CDK_ASSEMBLY_I0301`| A debug message emitted by a Context Provider |`debug`| {@link ContextProviderMessageSource} |
88
91
|`CDK_ASSEMBLY_I9999`| Annotations emitted by the cloud assembly |`info`|[cxapi.SynthesisMessage](https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_cx-api.SynthesisMessage.html)|
89
92
|`CDK_ASSEMBLY_W9999`| Warnings emitted by the cloud assembly |`warn`|[cxapi.SynthesisMessage](https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_cx-api.SynthesisMessage.html)|
90
93
|`CDK_ASSEMBLY_E9999`| Errors emitted by the cloud assembly |`error`|[cxapi.SynthesisMessage](https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_cx-api.SynthesisMessage.html)|
0 commit comments