From 07ceeeebe014374626904e5d7c8a20d1a45453fe Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 27 Aug 2020 15:56:16 +0000 Subject: 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). --- include/libseat.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/libseat.h') diff --git a/include/libseat.h b/include/libseat.h index be19c43..891cb86 100644 --- a/include/libseat.h +++ b/include/libseat.h @@ -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 -- cgit v1.2.3