|
#define | ILA_DLOG(tag) DLOG_IF(INFO, DebugLog::Find(tag)) << "[" << tag << "] " |
| Log debug message to INFO if the "tag" has been enabled.
|
|
#define | ILA_INFO DLOG(INFO) |
| Log the message to INFO (lvl 0). (Debug)
|
|
#define | ILA_WARN DLOG(WARNING) |
| Log the message to WARNING (lvl 1). (Debug)
|
|
#define | ILA_ERROR DLOG(ERROR) |
| Log the message to ERROR (lvl 2). (Debug)
|
|
#define | ILA_INFO_IF(b) DLOG_IF(INFO, b) |
| Conditionally log the message to INFO (lvl 0). (Debug)
|
|
#define | ILA_WARN_IF(b) DLOG_IF(WARNING, b) |
| Conditionally log the message to WARNING (lvl 1). (Debug)
|
|
#define | ILA_ERROR_IF(b) DLOG_IF(ERROR, b) |
| Conditionally log the message to ERROR (lvl 2). (Debug)
|
|
#define | ILA_ASSERT(b) DLOG_IF(FATAL, !(b)) |
| Assertion with message logged to FATAL (lvl 3). (Debug)
|
|
#define | ILA_CHECK(b) CHECK(b) |
| Assertion with message logged to FATAL (lvl 3). (Debug/Release)
|
|
#define | ILA_CHECK_EQ(a, b) CHECK_EQ(a, b) |
| Assert equal with message logged to FATAL (lvl 3). (Debug/Release)
|
|
#define | ILA_CHECK_NE(a, b) CHECK_NE(a, b) |
| Assert not equal with message logged to FATAL (lvl 3). (Debug/Release)
|
|
#define | ILA_CHECK_STREQ(a, b) CHECK_STREQ(a, b) |
| Assert string equal with message logged to FATAL (lvl 3). (Debug/Release)
|
|
#define | ILA_NOT_NULL(ptr) CHECK_NOTNULL(ptr) |
| Assert point not NULL – FATAL (lvl 3). (Debug/Release)
|
|
The header file for the debug/logging/asserting system.