mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
Add function wlr_log_get_verbosity()
Returns the verbosity passed to wlr_log_init().
This commit is contained in:
parent
bf670b84c4
commit
e44ab5d584
2 changed files with 7 additions and 0 deletions
|
|
@ -37,6 +37,9 @@ typedef void (*wlr_log_func_t)(enum wlr_log_importance importance,
|
|||
// If `callback` is NULL, wlr will use its default logger.
|
||||
void wlr_log_init(enum wlr_log_importance verbosity, wlr_log_func_t callback);
|
||||
|
||||
// Returns the log verbosity provided to wlr_log_init
|
||||
enum wlr_log_importance wlr_log_get_verbosity(void);
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define _WLR_ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue