From 250adee852612576093639fa13c97bd02483dcf6 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Mon, 3 Aug 2020 02:43:13 +0200 Subject: libseat: Use LIBSEAT_LOGLEVEL instead of SEATD_LOGLEVEL --- libseat/libseat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libseat/libseat.c') diff --git a/libseat/libseat.c b/libseat/libseat.c index e514d7f..00168c0 100644 --- a/libseat/libseat.c +++ b/libseat/libseat.c @@ -38,7 +38,7 @@ struct libseat *libseat_open_seat(struct libseat_seat_listener *listener, void * return NULL; } - char *loglevel = getenv("SEATD_LOGLEVEL"); + char *loglevel = getenv("LIBSEAT_LOGLEVEL"); enum libseat_log_level level = LIBSEAT_SILENT; if (loglevel != NULL) { if (strcmp(loglevel, "silent") == 0) { -- cgit v1.2.3