aboutsummaryrefslogtreecommitdiff
path: root/libseat/libseat.c
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2020-08-03 02:43:13 +0200
committerKenny Levinsen <kl@kl.wtf>2020-08-03 02:49:07 +0200
commit250adee852612576093639fa13c97bd02483dcf6 (patch)
tree092b9c4e3492bddded3e229e43d152fbe3415200 /libseat/libseat.c
parente25688fed67b6ffb5d5dfee6530d3c2d7c327115 (diff)
libseat: Use LIBSEAT_LOGLEVEL instead of SEATD_LOGLEVEL
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 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) {