#include <inttypes.h>
Go to the source code of this file.
|
#define | LOG_DEBUG(format, ...) printf("[DEBUG]: " format "\n", ##__VA_ARGS__) |
|
#define | LOG_ERROR(format, ...) printf("[ERROR]: " format "\n", ##__VA_ARGS__) |
|
#define | LOG_FATAL(format, ...) printf("[FATAL]: " format "\n", ##__VA_ARGS__) |
|
#define | LOG_INFO(format, ...) printf("[INFO]: " format "\n", ##__VA_ARGS__) |
|
#define | LOG_WARN(format, ...) printf("[WARNING]: " format "\n", ##__VA_ARGS__) |
|
#define LOG_DEBUG |
( |
|
format, |
|
|
|
... |
|
) |
| printf("[DEBUG]: " format "\n", ##__VA_ARGS__) |
Definition at line 33 of file log.h.
#define LOG_ERROR |
( |
|
format, |
|
|
|
... |
|
) |
| printf("[ERROR]: " format "\n", ##__VA_ARGS__) |
Definition at line 36 of file log.h.
#define LOG_FATAL |
( |
|
format, |
|
|
|
... |
|
) |
| printf("[FATAL]: " format "\n", ##__VA_ARGS__) |
Definition at line 37 of file log.h.
#define LOG_INFO |
( |
|
format, |
|
|
|
... |
|
) |
| printf("[INFO]: " format "\n", ##__VA_ARGS__) |
Definition at line 35 of file log.h.
#define LOG_WARN |
( |
|
format, |
|
|
|
... |
|
) |
| printf("[WARNING]: " format "\n", ##__VA_ARGS__) |
Definition at line 34 of file log.h.