Skip to content

Commit 6e06a34

Browse files
Only Write screen output on Master node
Co-authored-by: Pedro Gomes <38071223+pcarruscag@users.noreply.github.com>
1 parent 4baa963 commit 6e06a34

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/src/CConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5740,8 +5740,8 @@ void CConfig::SetMarkers(SU2_COMPONENT val_software) {
57405740
// In case of multiple zones, the markers might appear only in zonal config and not in the Master.
57415741
// A loop over all zones would need to be included which is not straight forward as this can only be
57425742
// checked once all zonal configs are read.
5743-
else
5744-
cout << "Warning: DV_MARKER contains marker names that do not exist in the lists of BCs of the master config file.\n" <<
5743+
else if (rank == MASTER_NODE)
5744+
cout << "Warning: DV_MARKER contains marker names that do not exist in the lists of BCs of the master config file.\n"
57455745
"Make sure the marker names exist in the zonal config files" << endl;
57465746
}
57475747
}

0 commit comments

Comments
 (0)