Go to the source code of this file.
|
#define | RAW_LOG(severity, ...) |
|
#define | RAW_VLOG(verboselevel, ...) |
|
#define | RAW_LOG_INFO(...) google::RawLog__(google::GLOG_INFO, __FILE__, __LINE__, __VA_ARGS__) |
|
#define | RAW_LOG_WARNING(...) google::RawLog__(google::GLOG_WARNING, __FILE__, __LINE__, __VA_ARGS__) |
|
#define | RAW_LOG_ERROR(...) google::RawLog__(google::GLOG_ERROR, __FILE__, __LINE__, __VA_ARGS__) |
|
#define | RAW_LOG_FATAL(...) google::RawLog__(google::GLOG_FATAL, __FILE__, __LINE__, __VA_ARGS__) |
|
#define | RAW_CHECK(condition, message) |
|
#define | RAW_DLOG(severity, ...) RAW_LOG(severity, __VA_ARGS__) |
|
#define | RAW_DCHECK(condition, message) RAW_CHECK(condition, message) |
|
◆ RAW_CHECK
#define RAW_CHECK |
( |
|
condition, |
|
|
|
message |
|
) |
| |
Value: do { \
if (!(condition)) { \
RAW_LOG(
FATAL,
"Check %s failed: %s", #condition,
message); \
} \
} while (0)
Definition at line 106 of file raw_logging.h.
◆ RAW_DCHECK
◆ RAW_DLOG
#define RAW_DLOG |
( |
|
severity, |
|
|
|
... |
|
) |
| RAW_LOG(severity, __VA_ARGS__) |
◆ RAW_LOG
#define RAW_LOG |
( |
|
severity, |
|
|
|
... |
|
) |
| |
Value: do { \
switch (google::GLOG_##severity) { \
case 0: \
RAW_LOG_INFO(__VA_ARGS__); \
break; \
case 1: \
RAW_LOG_WARNING(__VA_ARGS__); \
break; \
case 2: \
RAW_LOG_ERROR(__VA_ARGS__); \
break; \
case 3: \
RAW_LOG_FATAL(__VA_ARGS__); \
break; \
default: \
break; \
} \
} while (0)
Definition at line 36 of file raw_logging.h.
◆ RAW_LOG_ERROR
◆ RAW_LOG_FATAL
◆ RAW_LOG_INFO
◆ RAW_LOG_WARNING
◆ RAW_VLOG
#define RAW_VLOG |
( |
|
verboselevel, |
|
|
|
... |
|
) |
| |
Value: do { \
RAW_LOG_INFO(__VA_ARGS__); \
} \
} while (0)
Definition at line 59 of file raw_logging.h.