1.2.13.4.4 SRV_LOG_REPORT_LEVEL Enum
C
typedef enum
{
/* Errors that have the potential to cause a system crash. */
SRV_LOG_REPORT_FATAL,
/* Errors that have the potential to cause incorrect behavior. */
SRV_LOG_REPORT_ERROR,
/* Warnings about potentially unexpected behavior or side effects. */
SRV_LOG_REPORT_WARNING,
/* Information helpful to understanding potential errors and warnings. */
SRV_LOG_REPORT_INFO,
/* Verbose information helpful during debugging and testing. */
SRV_LOG_REPORT_DEBUG
} SRV_LOG_REPORT_LEVEL;Summary
Log message priority levels.
Description
This enumeration maps the log levels to the supported system error message priority values.
