X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.h;h=2b2cae0c74ee1aa975d5d91cf966c657ce0cc2d7;hp=12c9a55242df84570adf16c5ef06d551ff8a303b;hb=8dfd6071e1a4fd3966c0a77dbb7d719c52433b54;hpb=a3d741fa3bc3120d5b62a56826a97524daa32803 diff --git a/log.h b/log.h index 12c9a552..2b2cae0c 100644 --- a/log.h +++ b/log.h @@ -1,21 +1,22 @@ #ifndef FIO_LOG_H #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); \ - if (f_err != stderr) \ - fprintf(stderr, ##args); \ - } while (0) - -#define log_info(args...) fprintf(f_out, ##args) +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); -FILE *get_f_out(void); -FILE *get_f_err(void); +enum { + FIO_LOG_DEBUG = 1, + FIO_LOG_INFO = 2, + FIO_LOG_ERR = 3, +}; #endif