X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Flogging.c;h=eb610833676d46519cd7e7437e36d00df3f84654;hb=e23004b595a319f5bfd6fbc9eda600edda1cfd02;hp=9841c68dbdc286be2d4c508b005eb4c4054fd477;hpb=d8621b3ea82b7fc1937b0eefb2b1316b2ce361a5;p=lttng-ust.git diff --git a/src/common/logging.c b/src/common/logging.c index 9841c68d..eb610833 100644 --- a/src/common/logging.c +++ b/src/common/logging.c @@ -6,22 +6,22 @@ #include "common/logging.h" -volatile enum ust_err_loglevel ust_err_loglevel; +volatile enum lttng_ust_log_level lttng_ust_log_level; -void ust_err_init(void) +void lttng_ust_logging_init(void) { - char *ust_debug; + char *lttng_ust_debug; - if (ust_err_loglevel == UST_ERR_LOGLEVEL_UNKNOWN) { + if (lttng_ust_log_level == LTTNG_UST_LOG_LEVEL_UNKNOWN) { /* * This getenv is not part of lttng_ust_getenv() because it * is required to print ERR() performed during getenv * initialization. */ - ust_debug = getenv("LTTNG_UST_DEBUG"); - if (ust_debug) - ust_err_loglevel = UST_ERR_LOGLEVEL_DEBUG; + lttng_ust_debug = getenv("LTTNG_UST_DEBUG"); + if (lttng_ust_debug) + lttng_ust_log_level = LTTNG_UST_LOG_LEVEL_DEBUG; else - ust_err_loglevel = UST_ERR_LOGLEVEL_NORMAL; + lttng_ust_log_level = LTTNG_UST_LOG_LEVEL_NORMAL; } }