#ifndef FLAGS_LOG_H | |
#define FLAGS_LOG_H | |
#define flags_log(fmt, args...) printf("[flags] [%s-%d] Log: " fmt "\n", __FUNCTION__, __LINE__, ##args) | |
#define flags_err(fmt, args...) printf("[flags] [%s-%d] Err: " fmt "\n", __FUNCTION__, __LINE__, ##args) | |
#endif // FLAGS_LOG_H | |