6 #define ldebug logdebug
12 #define SFLOG(s) sflog(s, __func__, __LINE__);
14 extern int log_init(void);
15 void log_deinit(void);
16 int log_grok_var(char *var
, char *val
);
17 void loginfo(const char *fmt
, ...)
18 __attribute__((__format__(__printf__
, 1, 2)));
19 void logwarn(const char *fmt
, ...)
20 __attribute__((__format__(__printf__
, 1, 2)));
21 void logerr(const char *fmt
, ...)
22 __attribute__((__format__(__printf__
, 1, 2)));
23 void logdebug(const char *fmt
, ...)
24 __attribute__((__format__(__printf__
, 1, 2)));
25 void log_msg(int level
, const char *fmt
, ...)
26 __attribute__((__format__(__printf__
, 2, 3)));
27 int sflog(const char *syscall
, const char *func
, int line
);