blob: 48ac5f0bb3e3ef1559e3b83e9182883f18659733 (
plain)
1
2
3
4
5
6
|
#define APP_LOG_DEBUG 1
#define APP_LOG_INFO 2
#define APP_LOG_ERR 3
#define APP_LOG_LEVEL APP_LOG_DEBUG
#define APP_LOG(l, ...) (l >= APP_LOG_LEVEL ? fprintf(stderr, __VA_ARGS__) : 0 )
|