diff options
author | Simon Ser <contact@emersion.fr> | 2020-08-27 15:56:15 +0000 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2020-08-28 01:21:57 +0200 |
commit | 48b9bf47075271c91097eba4bf8e9316aa33f9c8 (patch) | |
tree | 45523fca2de64a8f883c2bafd363e587e2f0a5cf /libseat/libseat.c | |
parent | 47d4b43f1a63ca83b7f2dd8bc7eb24f194ebb32f (diff) |
Nuke LIBSEAT_LOGLEVEL
This will be replaced with a libseat API to set the log level.
Diffstat (limited to 'libseat/libseat.c')
-rw-r--r-- | libseat/libseat.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libseat/libseat.c b/libseat/libseat.c index 1b6a99d..19f0e7f 100644 --- a/libseat/libseat.c +++ b/libseat/libseat.c @@ -37,18 +37,7 @@ struct libseat *libseat_open_seat(struct libseat_seat_listener *listener, void * return NULL; } - char *loglevel = getenv("LIBSEAT_LOGLEVEL"); - enum libseat_log_level level = LIBSEAT_LOG_LEVEL_SILENT; - if (loglevel != NULL) { - if (strcmp(loglevel, "silent") == 0) { - level = LIBSEAT_LOG_LEVEL_SILENT; - } else if (strcmp(loglevel, "info") == 0) { - level = LIBSEAT_LOG_LEVEL_INFO; - } else if (strcmp(loglevel, "debug") == 0) { - level = LIBSEAT_LOG_LEVEL_DEBUG; - } - } - log_init(level); + log_init(LIBSEAT_LOG_LEVEL_SILENT); char *backend_type = getenv("LIBSEAT_BACKEND"); struct libseat *backend = NULL; |