summaryrefslogtreecommitdiff
path: root/log.h
blob: 71f89c1a04c0eeb7c0187ef59a8a6ce7cbce9db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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)
#define log_valist(str, args)	vfprintf(f_out, (str), (args))

FILE *get_f_out(void);
FILE *get_f_err(void);

#endif