X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttngerr.h;fp=include%2Flttngerr.h;h=b14f23218526e4843dc2131bfc1aee76fc8232ed;hp=92a18f11d2d9f9facb9748feb56b7c4f82969bc6;hb=1fea938d0d3adc783bb49d7ff3d0686ba87b0520;hpb=d3e8f6bb8554af02b881990fbb5445ac6a4f4d98 diff --git a/include/lttngerr.h b/include/lttngerr.h index 92a18f11d..b14f23218 100644 --- a/include/lttngerr.h +++ b/include/lttngerr.h @@ -43,8 +43,9 @@ extern int opt_verbose; #define __lttng_print(type, fmt, args...) \ do { \ if (opt_quiet == 0) { \ - if (type == PRINT_MSG || \ - ((type & PRINT_DBG) && opt_verbose == 1) || \ + if (type == PRINT_MSG) { \ + fprintf(stdout, fmt, ## args); \ + } else if (((type & PRINT_DBG) && opt_verbose == 1) || \ ((type & (PRINT_DBG | PRINT_DBG2)) && \ opt_verbose == 2) || \ ((type & (PRINT_DBG | PRINT_DBG2 | PRINT_DBG3)) && \