From a254fe3692e63f92aa710310ba8113373180448c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 27 Aug 2020 15:56:12 +0000 Subject: Rename enum log_level to libseat_log_level This is preparatory work for exposing a public function to set libseat's log handler. --- libseat/libseat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libseat') diff --git a/libseat/libseat.c b/libseat/libseat.c index 121a3b0..1b6a99d 100644 --- a/libseat/libseat.c +++ b/libseat/libseat.c @@ -38,14 +38,14 @@ struct libseat *libseat_open_seat(struct libseat_seat_listener *listener, void * } char *loglevel = getenv("LIBSEAT_LOGLEVEL"); - enum log_level level = LOGLEVEL_SILENT; + enum libseat_log_level level = LIBSEAT_LOG_LEVEL_SILENT; if (loglevel != NULL) { if (strcmp(loglevel, "silent") == 0) { - level = LOGLEVEL_SILENT; + level = LIBSEAT_LOG_LEVEL_SILENT; } else if (strcmp(loglevel, "info") == 0) { - level = LOGLEVEL_INFO; + level = LIBSEAT_LOG_LEVEL_INFO; } else if (strcmp(loglevel, "debug") == 0) { - level = LOGLEVEL_DEBUG; + level = LIBSEAT_LOG_LEVEL_DEBUG; } } log_init(level); -- cgit v1.2.3