Rename internal ust_err to lttng_ust_logging
[lttng-ust.git] / src / common / logging.c
index 9841c68dbdc286be2d4c508b005eb4c4054fd477..eb610833676d46519cd7e7437e36d00df3f84654 100644 (file)
@@ -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;
        }
 }
This page took 0.028042 seconds and 4 git commands to generate.