Log Levels#

Variables#

const int32_t carb::logging::kLevelError

Error level, this is for error messages.

const int32_t carb::logging::kLevelFatal

Fatal level, this is for messages on unrecoverable errors.

const int32_t carb::logging::kLevelInfo

Info level, this is for informational messages.

const int32_t carb::logging::kLevelVerbose

Verbose level, this is for detailed diagnostics messages.

const int32_t carb::logging::kLevelWarn

Warning level, this is for warning messages.

Variables#

const int32_t carb::logging::kLevelError = 1#

Error level, this is for error messages.

An error has occurred but the program can continue.

const int32_t carb::logging::kLevelFatal = 2#

Fatal level, this is for messages on unrecoverable errors.

An error has occurred and the program cannot continue. After logging such a message the caller should take immediate action to exit the program or unload the module.

const int32_t carb::logging::kLevelInfo = -1#

Info level, this is for informational messages.

They are usually triggered on state changes and typically we should not see the same message on every frame.

const int32_t carb::logging::kLevelVerbose = -2#

Verbose level, this is for detailed diagnostics messages.

Expect to see some verbose messages on every frame under certain conditions.

const int32_t carb::logging::kLevelWarn = 0#

Warning level, this is for warning messages.

Something could be wrong but not necessarily an error. Therefore anything that could be a problem but cannot be determined to be an error should fall into this category. This is the default log level threshold, if nothing else was specified via configuration or startup arguments. This is also the reason why it has a value of 0 (default as zero).