Introduce libseat_set_log_level

The default level is SILENT. log_init no longer takes an initial log
level (so that calls to libseat_set_log_level prior to log_init work
correctly).
This commit is contained in:
Simon Ser 2020-08-27 15:56:16 +00:00 committed by Kenny Levinsen
parent 48b9bf4707
commit 07ceeeebe0
5 changed files with 18 additions and 6 deletions

View file

@ -160,4 +160,12 @@ typedef void (*libseat_log_func)(enum libseat_log_level level, const char *forma
*/
void libseat_set_log_handler(libseat_log_func handler);
/*
* Sets the libseat log level.
*
* Only log messages whose level is lower or equal than the current log level
* will be processed, others will be ignored.
*/
void libseat_set_log_level(enum libseat_log_level level);
#endif

View file

@ -43,7 +43,7 @@
#define log_debug(str)
#endif
void log_init(enum libseat_log_level level);
void log_init(void);
void _logf(enum libseat_log_level level, const char *fmt, ...) ATTRIB_PRINTF(2, 3);
#endif