OSDN Git Service

tools/virtiofsd: add G_GNUC_PRINTF for logging functions
[qmiga/qemu.git] / tools / virtiofsd / fuse_log.c
1 /*
2  * FUSE: Filesystem in Userspace
3  * Copyright (C) 2019  Red Hat, Inc.
4  *
5  * Logging API.
6  *
7  * This program can be distributed under the terms of the GNU LGPLv2.
8  * See the file COPYING.LIB
9  */
10
11 #include "qemu/osdep.h"
12 #include "fuse_log.h"
13
14
15 G_GNUC_PRINTF(2, 0)
16 static void default_log_func(__attribute__((unused)) enum fuse_log_level level,
17                              const char *fmt, va_list ap)
18 {
19     vfprintf(stderr, fmt, ap);
20 }
21
22 static fuse_log_func_t log_func = default_log_func;
23
24 void fuse_set_log_func(fuse_log_func_t func)
25 {
26     if (!func) {
27         func = default_log_func;
28     }
29
30     log_func = func;
31 }
32
33 void fuse_log(enum fuse_log_level level, const char *fmt, ...)
34 {
35     va_list ap;
36
37     va_start(ap, fmt);
38     log_func(level, fmt, ap);
39     va_end(ap);
40 }