Make MSG() print on stdout instead of stderr
[lttng-tools.git] / include / lttngerr.h
index c2f4d519886aff042e22b828fb0794f39b4e9b85..b14f23218526e4843dc2131bfc1aee76fc8232ed 100644 (file)
@@ -43,13 +43,14 @@ 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)) &&    \
                                                opt_verbose == 3)) {                              \
-                               fprintf(stdout, fmt, ## args);                            \
+                               fprintf(stderr, fmt, ## args);                            \
                        } else if (type & (PRINT_ERR | PRINT_WARN | PRINT_BUG)) {     \
                                fprintf(stderr, fmt, ## args);                            \
                        }                                                             \
This page took 0.023221 seconds and 4 git commands to generate.