1 
2 #ifndef SHL_LLOG_H
3 #define SHL_LLOG_H
4 
5 #include <stdio.h>
6 
7 #define llog_debug(obj, fmt, ...) fprintf(stderr, fmt "\n", ##__VA_ARGS__)
8 #define llog_warning(obj, fmt, ...) fprintf(stderr, fmt "\n", ##__VA_ARGS__)
9 
10 #endif
11