Fix: do not print error and bug messages when quiet (-q) is present
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Mon, 11 Jan 2016 22:32:14 +0000 (17:32 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 13 Jan 2016 21:05:01 +0000 (16:05 -0500)
Conform to the lttng man page

fixes #988

Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/error.h

index 1ee6e675a5b752eb600c0e2f4d19dc2891fcd6e7..89b3363ce1c95d88ef64420ff40222f088222633 100644 (file)
@@ -80,9 +80,8 @@ extern int lttng_opt_mi;
                                ((type & (PRINT_DBG | PRINT_DBG2 | PRINT_DBG3)) &&  \
                                        lttng_opt_verbose == 3))) {                     \
                        fprintf(stderr, fmt, ## args);                          \
-               } else if (lttng_opt_quiet == 0 && (type & (PRINT_WARN))) { \
-                       fprintf(stderr, fmt, ## args);                          \
-               } else if (type & (PRINT_ERR | PRINT_BUG)) {                \
+               } else if (lttng_opt_quiet == 0 &&                          \
+                               (type & (PRINT_WARN | PRINT_ERR | PRINT_BUG))) {    \
                        fprintf(stderr, fmt, ## args);                          \
                }                                                           \
        } while (0);
This page took 0.025644 seconds and 4 git commands to generate.