Merge branch 'master' into gfio
[fio.git] / log.h
diff --git a/log.h b/log.h
index a69846efd7a5721fd8af10592ef73ad5e0c3e7bd..ad9d08bbe6730fcf3750ec30e54d5d2b6265f330 100644 (file)
--- a/log.h
+++ b/log.h
@@ -11,5 +11,15 @@ 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);
+
+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