![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
Macros | |
| #define | LOGD(...) ::vccc::Log.d(__VA_ARGS__) |
| Debug log wrapper for security. This won't print in release build. More... | |
| #define | LOGID(...) ::vccc::Log.i(__VA_ARGS__) |
| #define | LOGWD(...) ::vccc::Log.w(__VA_ARGS__) |
| #define | LOGED(...) ::vccc::Log.e(__VA_ARGS__) |
| #define | LOGI(...) ::vccc::Log.i(__VA_ARGS__) |
| Information log wrapper. More... | |
| #define | LOGW(...) ::vccc::Log.w(__VA_ARGS__) |
| Warning log wrapper. More... | |
| #define | LOGE(...) ::vccc::Log.e(__VA_ARGS__) |
| Error log wrapper. More... | |
| #define LOGD | ( | ... | ) | ::vccc::Log.d(__VA_ARGS__) |
Below example applies to LOGI, LOGW, LOGE
| #define LOGE | ( | ... | ) | ::vccc::Log.e(__VA_ARGS__) |
| #define LOGED | ( | ... | ) | ::vccc::Log.e(__VA_ARGS__) |
| #define LOGI | ( | ... | ) | ::vccc::Log.i(__VA_ARGS__) |
| #define LOGID | ( | ... | ) | ::vccc::Log.i(__VA_ARGS__) |
| #define LOGW | ( | ... | ) | ::vccc::Log.w(__VA_ARGS__) |
| #define LOGWD | ( | ... | ) | ::vccc::Log.w(__VA_ARGS__) |