Fix static build
[lttng-ust.git] / snprintf / core.c
index 2fa9839c4e4103c40635cfd8181418b9bf158ccf..966b588721aaf439bfd6ecfa1b4e74a617486a4f 100644 (file)
 #include <usterr-signal-safe.h>
 
 volatile enum ust_loglevel ust_loglevel;
+
+void init_usterr(void)
+{
+       char *ust_debug;
+
+       if (ust_loglevel == UST_LOGLEVEL_UNKNOWN) {
+               ust_debug = getenv("LTTNG_UST_DEBUG");
+               if (ust_debug)
+                       ust_loglevel = UST_LOGLEVEL_DEBUG;
+               else
+                       ust_loglevel = UST_LOGLEVEL_NORMAL;
+       }
+}
This page took 0.023589 seconds and 4 git commands to generate.