File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -689,6 +689,18 @@ static int do_open(int output_id, opal_output_stream_t * lds)
689
689
info [i ].ldi_file_num_lines_lost = 0 ;
690
690
}
691
691
692
+ /* Special case: output_id == 0 == verbose_stream
693
+ * This is the verbose stream, so update the internal 'verbose_stream'
694
+ * to match the parameters set in the info[i]
695
+ */
696
+ if ( verbose_stream == i ) {
697
+ verbose .lds_want_syslog = info [i ].ldi_syslog ;
698
+ verbose .lds_syslog_priority = info [i ].ldi_syslog_priority ;
699
+ verbose .lds_syslog_ident = info [i ].ldi_syslog_ident ;
700
+ verbose .lds_want_stdout = info [i ].ldi_stdout ;
701
+ verbose .lds_want_stderr = info [i ].ldi_stderr ;
702
+ }
703
+
692
704
/* Don't open a file in the session directory now -- do that lazily
693
705
* so that if there's no output, we don't have an empty file */
694
706
You can’t perform that action at this time.
0 commit comments