From daad3bf0e7a26ed647d134ce9ca20dadff294595 Mon Sep 17 00:00:00 2001 From: Ajaykumar Rajappa Date: Mon, 23 Feb 2026 08:32:20 +0100 Subject: [PATCH] ziomon: Send MQ poll status messages to stdout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move MQ poll status messages from stderr to stdout since they are normal progress indications rather than warnings/errors. Signed-off-by: Ajaykumar Rajappa Reviewed-by: M Nikhil Reviewed-by: Nihar Panda Signed-off-by: Jan Höppner --- ziomon/ziomon_util.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ziomon/ziomon_util.c b/ziomon/ziomon_util.c index 08e9cd36..15b425f9 100644 --- a/ziomon/ziomon_util.c +++ b/ziomon/ziomon_util.c @@ -897,14 +897,12 @@ static int setup_msg_q(struct options *opts) opts->msg_q = msgget(util_q, S_IRWXU); if (opts->msg_q >= 0) { if (wait) - fprintf(stderr, "%s: Message queue is up!\n", - toolname); + fprintf(stdout, "%s: Message queue is up!\n", toolname); break; } if (!wait) { wait = 1; - fprintf(stderr, "%s: Warning: Message queue not" - " up yet, waiting...\n", toolname); + fprintf(stdout, "%s: Message queue not up yet, waiting...\n", toolname); } usleep(200000); }