Server logging cleanup/functionality
[fio.git] / log.h
diff --git a/log.h b/log.h
index 5ca37b391a454cbc29a2992ab5bc9b382a328b99..916f464dab8f19ea73931fa1880785e9eca8669b 100644 (file)
--- a/log.h
+++ b/log.h
@@ -6,18 +6,9 @@
 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, ...);
+extern int log_info(const char *format, ...);
 
-#define log_info(args...)      fprintf(f_out, ##args)
-
-FILE *get_f_out(void);
-FILE *get_f_err(void);
+#define log_valist(str, args)  vfprintf(f_out, (str), (args))
 
 #endif