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