Go to the source code of this file.
|
#define | DEBUG_ERROR(fmt, ...) Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__) |
|
#define | DEBUG_WARNING(fmt, ...) Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__) |
|
#define | DEBUG_INFO(fmt, ...) Debug.print(DBG_INFO, fmt, ## __VA_ARGS__) |
|
#define | DEBUG_DEBUG(fmt, ...) Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__) |
|
#define | DEBUG_VERBOSE(fmt, ...) Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__) |
|
◆ DEBUG_DEBUG
#define DEBUG_DEBUG |
( |
|
fmt, |
|
|
|
... |
|
) |
| Debug.print(DBG_DEBUG, fmt, ## __VA_ARGS__) |
◆ DEBUG_ERROR
#define DEBUG_ERROR |
( |
|
fmt, |
|
|
|
... |
|
) |
| Debug.print(DBG_ERROR, fmt, ## __VA_ARGS__) |
◆ DEBUG_INFO
#define DEBUG_INFO |
( |
|
fmt, |
|
|
|
... |
|
) |
| Debug.print(DBG_INFO, fmt, ## __VA_ARGS__) |
◆ DEBUG_VERBOSE
#define DEBUG_VERBOSE |
( |
|
fmt, |
|
|
|
... |
|
) |
| Debug.print(DBG_VERBOSE, fmt, ## __VA_ARGS__) |
◆ DEBUG_WARNING
#define DEBUG_WARNING |
( |
|
fmt, |
|
|
|
... |
|
) |
| Debug.print(DBG_WARNING, fmt, ## __VA_ARGS__) |
◆ getDebugMessageLevel()
int getDebugMessageLevel |
( |
| ) |
|
◆ setDebugMessageLevel()
void setDebugMessageLevel |
( |
int const |
debug_level | ) |
|
◆ Debug