X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.h;h=e5093139f0c24e1e061fb638d898aa8d79869e60;hp=f201191b11eb552a302f3876e64750dfd4969856;hb=017052b628ae0cef4214ea624413149fb6e87550;hpb=46c48f1f9b8ce94132c13638e4c83c13e1d392da diff --git a/log.h b/log.h index f201191b..e5093139 100644 --- a/log.h +++ b/log.h @@ -2,14 +2,24 @@ #define FIO_LOG_H #include +#include 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_valist(const char *str, va_list); +extern int log_local_buf(const char *buf, size_t); +extern int log_info_flush(void); -#define log_valist(str, args) vfprintf(f_out, (str), (args)) +enum { + FIO_LOG_DEBUG = 1, + FIO_LOG_INFO = 2, + FIO_LOG_ERR = 3, + FIO_LOG_NR = 4, +}; + +extern const char *log_get_level(int level); #endif