enum LogLevel
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoT.Alpha.LogLevel |
![]() | github.com/aws/aws-cdk-go/awscdkiotalpha/v2#LogLevel |
![]() | software.amazon.awscdk.services.iot.alpha.LogLevel |
![]() | aws_cdk.aws_iot_alpha.LogLevel |
![]() | @aws-cdk/aws-iot-alpha ยป LogLevel |
The log level for the AWS IoT Logging.
Example
new iot.Logging(this, 'Logging', {
logLevel: iot.LogLevel.INFO,
});
Members
Name | Description |
---|---|
ERROR | Any error that causes an operation to fail. |
WARN | Anything that can potentially cause inconsistencies in the system, but might not cause the operation to fail. |
INFO | High-level information about the flow of things. |
DEBUG | Information that might be helpful when debugging a problem. |
DISABLED | All logging is disabled. |
ERROR
Any error that causes an operation to fail.
Logs include ERROR information only
WARN
Anything that can potentially cause inconsistencies in the system, but might not cause the operation to fail.
Logs include ERROR and WARN information
INFO
High-level information about the flow of things.
Logs include INFO, ERROR, and WARN information
DEBUG
Information that might be helpful when debugging a problem.
Logs include DEBUG, INFO, ERROR, and WARN information
DISABLED
All logging is disabled.