X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.h;h=fdf3d7b19aed3d3981b166c32339fbd7bb596f79;hp=eea1129ba4ff3756fcd969545b6340e6fcc34032;hb=649c10c59b016ae8586e54746d3761bc6df33c9b;hpb=d9a7ba88af39b1047c9f8c077280932cd12cb58e diff --git a/log.h b/log.h index eea1129b..fdf3d7b1 100644 --- a/log.h +++ b/log.h @@ -2,23 +2,15 @@ #define FIO_LOG_H #include +#include extern FILE *f_out; extern FILE *f_err; -/* - * If logging output to a file, stderr should go to both stderr and f_err - */ -#define log_err(args, ...) do { \ - fprintf(f_err, args, ##__VA_ARGS__); \ - if (f_err != stderr) \ - fprintf(stderr, args, ##__VA_ARGS__); \ - } while (0) - -#define log_info(args, ...) fprintf(f_out, args, ##__VA_ARGS__) -#define log_valist(str, args) vfprintf(f_out, (str), (args)) - -FILE *get_f_out(void); -FILE *get_f_err(void); +extern int log_err(const char *format, ...); +extern int log_info(const char *format, ...); +extern int log_local(const char *format, ...); +extern int log_valist(const char *str, va_list); +extern int log_local_buf(const char *buf, size_t); #endif