blob: 4c6bd4689b9c44c78c98c0eab836223255e5fd9f [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001#ifndef FLAGS_LOG_H
2#define FLAGS_LOG_H
3
4
5#define flags_log(fmt, args...) printf("[flags] [%s-%d] Log: " fmt "\n", __FUNCTION__, __LINE__, ##args)
6#define flags_err(fmt, args...) printf("[flags] [%s-%d] Err: " fmt "\n", __FUNCTION__, __LINE__, ##args)
7
8
9#endif // FLAGS_LOG_H
10