14 lines
303 B
C
14 lines
303 B
C
#ifndef LOG_H
|
|
#define LOG_H
|
|
|
|
|
|
#ifdef TESTING_BUILD
|
|
#define LOG(fmt, ...) fprintf(stderr, "[*] " fmt "", ##__VA_ARGS__)
|
|
#define LOG_ERROR(fmt, ...) fprintf(stderr, "[Error] " fmt "", ##__VA_ARGS__)
|
|
#else
|
|
#define LOG(...) ((void)0)
|
|
#define LOG_ERROR(...) ((void)0)
|
|
#endif
|
|
|
|
|
|
#endif // LOG_H
|