| // Stub out the LOG implmentations with fprintf | |
| #ifndef SPRINGBOK_H | |
| #define SPRINGBOK_H | |
| #include <stdio.h> | |
| #define LOG_NOISY(msg, args...) fprintf(stdout, "[NOISY] " msg "\n", ##args) | |
| #define LOG_DEBUG(msg, args...) fprintf(stdout, "[DEBUG] " msg "\n", ##args) | |
| #define LOG_INFO(msg, args...) fprintf(stdout, "[INFO] " msg "\n", ##args) | |
| #define LOG_WARN(msg, args...) fprintf(stdout, "[WARN] " msg "\n", ##args) | |
| #define LOG_ERROR(msg, args...) fprintf(stderr, "[ERROR] " msg "\n", ##args) | |
| #endif // SPRINGBOK_H |