X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=log.h;h=d71fdc0795a8c4196124e83dfe3a52cc640892a3;hb=f6a7df5314e83df9cc408e7bf447afb76bee8454;hp=f201191b11eb552a302f3876e64750dfd4969856;hpb=46c48f1f9b8ce94132c13638e4c83c13e1d392da;p=fio.git diff --git a/log.h b/log.h index f201191b..d71fdc07 100644 --- a/log.h +++ b/log.h @@ -2,14 +2,35 @@ #define FIO_LOG_H #include +#include + +#include "lib/output_buffer.h" extern FILE *f_out; extern FILE *f_err; -extern int log_err(const char *format, ...); -extern int log_info(const char *format, ...); -extern int log_local(const char *format, ...); +extern int log_err(const char *format, ...) __attribute__ ((__format__ (__printf__, 1, 2))); +extern int log_info(const char *format, ...) __attribute__ ((__format__ (__printf__, 1, 2))); +extern int __log_buf(struct buf_output *, const char *format, ...) __attribute__ ((__format__ (__printf__, 2, 3))); +extern int log_valist(const char *str, va_list); +extern int log_local_buf(const char *buf, size_t); +extern int log_info_flush(void); + +#define log_buf(buf, format, args...) \ +do { \ + if ((buf) != NULL) \ + __log_buf(buf, format, ##args); \ + else \ + log_info(format, ##args); \ +} while (0) + +enum { + FIO_LOG_DEBUG = 1, + FIO_LOG_INFO = 2, + FIO_LOG_ERR = 3, + FIO_LOG_NR = 4, +}; -#define log_valist(str, args) vfprintf(f_out, (str), (args)) +extern const char *log_get_level(int level); #endif