 |
PowerBlocks SDK
|
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
17extern void log_initialize();
19extern void log_message(
const char* level,
const char* tag,
const char* fmt, ...);
21#define LOG_DEBUG(tab, ...) log_message("DEBUG", tab, ##__VA_ARGS__)
22#define LOG_INFO(tab, ...) log_message("INFO", tab, ##__VA_ARGS__)
23#define LOG_ERROR(tab, ...) log_message("ERROR", tab, ##__VA_ARGS__)