From 00b493e10dbe1dce0956d2fdaf03fa35c1bd7f59 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Fri, 22 Jan 2010 03:46:11 +0000 Subject: [PATCH] Make the sigpipe message be a verbose output This commit was SVN r22464. --- orte/tools/orterun/orterun.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/orte/tools/orterun/orterun.c b/orte/tools/orterun/orterun.c index ef4ccd799b..fe3478b5e7 100644 --- a/orte/tools/orterun/orterun.c +++ b/orte/tools/orterun/orterun.c @@ -1190,8 +1190,9 @@ static void abort_signal_callback(int fd, short flags, void *arg) static void epipe_signal_callback(int fd, short flags, void *arg) { /* for now, we just announce and ignore them */ - opal_output(0, "%s reports a SIGPIPE error on fd %d", - ORTE_NAME_PRINT(ORTE_PROC_MY_NAME), fd); + OPAL_OUTPUT_VERBOSE((1, orte_debug_verbosity, + "%s reports a SIGPIPE error on fd %d", + ORTE_NAME_PRINT(ORTE_PROC_MY_NAME), fd)); return; }