Introduce callback for logging
authorStefan Hajnoczi <stefanha@gmail.com>
Wed, 4 Sep 2019 14:59:18 +0000 (15:59 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 4 Sep 2019 14:59:18 +0000 (15:59 +0100)
commit317181e8ea1b3406919b946ca5524f8b9f34817d
tree0d0e0a2eb0d3d309dbabbdcdd6cb62131507b592
parentf39c71dcf99292c188bb6f0a117d7e118f92bfb1
Introduce callback for logging

Introduce an API for custom log handler functions.  This allows libfuse
applications to send messages to syslog(3) or other logging systems.
See include/fuse_log.h for details.

Convert libfuse from fprintf(stderr, ...) to log_fuse(level, ...).  Most
messages are error messages with FUSE_LOG_ERR log level.  There are also
some debug messages which now use the FUSE_LOG_DEBUG log level.

Note that lib/mount_util.c is used by both libfuse and fusermount3.
Since fusermount3 does not link against libfuse, we cannot call
fuse_log() from lib/mount_util.c.  This file will continue to use
fprintf(stderr, ...) until someone figures out how to split it up.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
18 files changed:
ChangeLog.rst
include/fuse_common.h
include/fuse_log.h [new file with mode: 0644]
include/meson.build
lib/cuse_lowlevel.c
lib/fuse.c
lib/fuse_i.h
lib/fuse_log.c [new file with mode: 0644]
lib/fuse_loop_mt.c
lib/fuse_lowlevel.c
lib/fuse_opt.c
lib/fuse_signals.c
lib/helper.c
lib/meson.build
lib/modules/iconv.c
lib/modules/subdir.c
lib/mount.c
lib/mount_bsd.c