X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.h;h=e5093139f0c24e1e061fb638d898aa8d79869e60;hp=5ca37b391a454cbc29a2992ab5bc9b382a328b99;hb=8e2c678f1fbc8321372c80447eec2ae9eabba747;hpb=bf84eacbfc91a952eb5b781ad2955109c862d41e diff --git a/log.h b/log.h index 5ca37b39..e5093139 100644 --- a/log.h +++ b/log.h @@ -2,22 +2,24 @@ #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) +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_valist(const char *str, va_list); +extern int log_local_buf(const char *buf, size_t); +extern int log_info_flush(void); -#define log_info(args...) fprintf(f_out, ##args) +enum { + FIO_LOG_DEBUG = 1, + FIO_LOG_INFO = 2, + FIO_LOG_ERR = 3, + FIO_LOG_NR = 4, +}; -FILE *get_f_out(void); -FILE *get_f_err(void); +extern const char *log_get_level(int level); #endif