X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=log.h;h=d71fdc0795a8c4196124e83dfe3a52cc640892a3;hb=a666cab8ed3d2a2fa782be345425a2e88734a007;hp=a885be7253628e28950115944cca2d937be653c7;hpb=fdd5f15f8231e8c91c4deff22e630a34addd0fef;p=fio.git diff --git a/log.h b/log.h index a885be72..d71fdc07 100644 --- a/log.h +++ b/log.h @@ -4,16 +4,26 @@ #include #include +#include "lib/output_buffer.h" + extern FILE *f_out; extern FILE *f_err; 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_local(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,