server/client: add FD_NET debug clues
[fio.git] / log.h
diff --git a/log.h b/log.h
index 12c9a55242df84570adf16c5ef06d551ff8a303b..f201191b11eb552a302f3876e64750dfd4969856 100644 (file)
--- a/log.h
+++ b/log.h
@@ -1,21 +1,15 @@
 #ifndef FIO_LOG_H
 #define FIO_LOG_H
 
+#include <stdio.h>
+
 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, ...);
 
-FILE *get_f_out(void);
-FILE *get_f_err(void);
+#define log_valist(str, args)  vfprintf(f_out, (str), (args))
 
 #endif