From: David Goulet Date: Tue, 17 Jan 2012 18:37:56 +0000 (-0500) Subject: Make MSG() print on stdout instead of stderr X-Git-Tag: v2.0-pre17~9 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=1fea938d0d3adc783bb49d7ff3d0686ba87b0520 Make MSG() print on stdout instead of stderr Signed-off-by: David Goulet --- 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)) && \