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