Lines Matching +full:- +full:- +full:log +full:- +full:level
24 * Log severity level
26 * These levels correspond to syslog(2) log levels since they are widely used.
40 * Log message handler function.
42 * This function must be thread-safe. It may be called from any libfuse
46 * Install a custom log message handler function using fuse_set_log_func().
48 * @param level log severity level
49 * @param fmt sprintf-style format string including newline
52 typedef void (*fuse_log_func_t)(enum fuse_log_level level,
56 * Install a custom log handler function.
58 * Log messages are emitted by libfuse functions to report errors and debug
60 * overridden by installing a custom log message handler function.
62 * The log message handler function is global and affects all FUSE filesystems
65 * @param func a custom log message handler function or NULL to revert to
71 * Emit a log message
73 * @param level severity level (FUSE_LOG_ERR, FUSE_LOG_DEBUG, etc)
74 * @param fmt sprintf-style format string including newline
76 void fuse_log(enum fuse_log_level level, const char *fmt, ...);