aboutsummaryrefslogtreecommitdiff
path: root/libseat/libseat.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-08-27 15:56:16 +0000
committerKenny Levinsen <kl@kl.wtf>2020-08-28 01:21:57 +0200
commit07ceeeebe014374626904e5d7c8a20d1a45453fe (patch)
treea2e11abccf998199c01d2424f0a19eb85449f8f0 /libseat/libseat.c
parent48b9bf47075271c91097eba4bf8e9316aa33f9c8 (diff)
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).
Diffstat (limited to 'libseat/libseat.c')
-rw-r--r--libseat/libseat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libseat/libseat.c b/libseat/libseat.c
index 19f0e7f..dd5635b 100644
--- a/libseat/libseat.c
+++ b/libseat/libseat.c
@@ -37,7 +37,7 @@ struct libseat *libseat_open_seat(struct libseat_seat_listener *listener, void *
return NULL;
}
- log_init(LIBSEAT_LOG_LEVEL_SILENT);
+ log_init();
char *backend_type = getenv("LIBSEAT_BACKEND");
struct libseat *backend = NULL;