blob: 44543d03b4ce900368cbeb593e2f08feaf855059 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <assert.h>
#include <stdarg.h>
#include "log.h"
static FILE *logf;
static bool debug;
static void __log(const char *fmt, va_list ap)
{
if (!logf)
return;
vfprintf(logf, fmt, ap);
fflush(logf);
}
void pb_log(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
__log(fmt, ap);
va_end(ap);
}
void pb_debug(const char *fmt, ...)
{
va_list ap;
if (!debug)
return;
va_start(ap, fmt);
__log(fmt, ap);
va_end(ap);
}
void __pb_log_init(FILE *fp, bool _debug)
{
if (logf)
fflush(logf);
logf = fp;
debug = _debug;
}
void pb_log_set_debug(bool _debug)
{
debug = _debug;
}
FILE *pb_log_get_stream(void)
{
static FILE *null_stream;
if (!logf) {
if (!null_stream)
null_stream = fopen("/dev/null", "a");
return null_stream;
}
return logf;
}
|