Skip to main content

Logging Flags

Flags that control the level of API error reporting. These can be combined.

Attributes

TypeName
const uint32_tVRTREE_ERRORLEVEL_DEBUG
Record debug messages.
const uint32_tVRTREE_ERRORLEVEL_ERRORS
Record critial errors.
const uint32_tVRTREE_ERRORLEVEL_INFO
Record info messages.
const uint32_tVRTREE_ERRORLEVEL_NONE
Do not set any internal error codes nor generate any messages.
const uint32_tVRTREE_ERRORLEVEL_WARNINGS
Record warnings.

Attributes Documentation

VRTREE_ERRORLEVEL_DEBUG

const uint32_t VRTREE_ERRORLEVEL_DEBUG = (1 << 2);

Record debug messages.

VRTREE_ERRORLEVEL_ERRORS

const uint32_t VRTREE_ERRORLEVEL_ERRORS = (1 << 0);

Record critial errors.

VRTREE_ERRORLEVEL_INFO

const uint32_t VRTREE_ERRORLEVEL_INFO = (1 << 3);

Record info messages.

VRTREE_ERRORLEVEL_NONE

const uint32_t VRTREE_ERRORLEVEL_NONE = 0;

Do not set any internal error codes nor generate any messages.

VRTREE_ERRORLEVEL_WARNINGS

const uint32_t VRTREE_ERRORLEVEL_WARNINGS = (1 << 1);

Record warnings.