Go to the source code of this file.
|
#define | Log_assert(EXPR) (void)((EXPR)|| ccxx::Log::assert_(__FILE__, __LINE__, #EXPR)) |
| Log an assertion. More...
|
|
#define | Log_debug(M, ...) |
|
#define | Log_info(M, ...) ccxx::Log::log(ccxx::LogInfo, __FILE__, __LINE__, M, __VA_ARGS__) |
| Log an informational message. More...
|
|
#define | Log_warning(M, ...) ccxx::Log::log(ccxx::LogWarning, __FILE__, __LINE__, M, __VA_ARGS__) |
| Log a warning message. More...
|
|
#define | Log_error(M, ...) ccxx::Log::log(ccxx::LogError, __FILE__, __LINE__, M, __VA_ARGS__) |
| Log an error message. More...
|
|
◆ Log_assert
#define Log_assert |
( |
|
EXPR | ) |
(void)((EXPR)|| ccxx::Log::assert_(__FILE__, __LINE__, #EXPR)) |
◆ Log_debug
#define Log_debug |
( |
|
M, |
|
|
|
... |
|
) |
| |
◆ Log_error
#define Log_error |
( |
|
M, |
|
|
|
... |
|
) |
| ccxx::Log::log(ccxx::LogError, __FILE__, __LINE__, M, __VA_ARGS__) |
◆ Log_info
#define Log_info |
( |
|
M, |
|
|
|
... |
|
) |
| ccxx::Log::log(ccxx::LogInfo, __FILE__, __LINE__, M, __VA_ARGS__) |
Log an informational message.
◆ Log_warning
#define Log_warning |
( |
|
M, |
|
|
|
... |
|
) |
| ccxx::Log::log(ccxx::LogWarning, __FILE__, __LINE__, M, __VA_ARGS__) |