The information to show on the check status detail page to help developers understand the issues.

TODO(@tianhaoz95): add field for details TODO(@tianhaoz95): rename the field names to be more specific TODO(@tianhaoz95): add a enum field to indicate the type warning/fatal/etc

interface DebugInfo {
    configError?: boolean;
    configErrorMsg?: string;
}

Properties

configError?: boolean

A bit to indicate if there is an error in config parsing phase since this is not considered as a fatal error.

! Deprecate this field as it is not being used.

configErrorMsg?: string

A message to indicate the error in config parsing which can be helpful for debugging.

Generated using TypeDoc