2 * FUSE: Filesystem in Userspace
3 * Copyright (C) 2019 Red Hat, Inc.
7 * This program can be distributed under the terms of the GNU LGPLv2.
8 * See the file COPYING.LIB
11 #include "qemu/osdep.h"
15 static void default_log_func(__attribute__((unused
)) enum fuse_log_level level
,
16 const char *fmt
, va_list ap
)
18 vfprintf(stderr
, fmt
, ap
);
21 static fuse_log_func_t log_func
= default_log_func
;
23 void fuse_set_log_func(fuse_log_func_t func
)
26 func
= default_log_func
;
32 void fuse_log(enum fuse_log_level level
, const char *fmt
, ...)
37 log_func(level
, fmt
, ap
);