blob: c1d2aa6a7b69e6558dd40aea752993457c6c2e7a (
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
|
#include "config.h"
#include <stdio.h>
#include <stdarg.h>
#include <time.h>
#include "alpm.h"
#include "log.h"
void _alpm_log(pmloglevel_t flag, char *fmt, ...)
{
alpm_cb_log logcb = alpm_option_get_logcb();
if(logcb == NULL) {
return;
}
if(flag & alpm_option_get_logmask()) {
char str[LOG_STR_LEN];
va_list args;
va_start(args, fmt);
vsnprintf(str, LOG_STR_LEN, fmt, args);
va_end(args);
logcb(flag, str);
}
}
|