Pstream output data only if debug > 1
This commit is contained in:
parent
1460d20087
commit
5d63832d6e
1 changed files with 2 additions and 2 deletions
|
@ -294,7 +294,7 @@ void Pstream::scatterList
|
|||
label leafID = notBelowLeaves[leafI];
|
||||
fromAbove >> Values[leafID];
|
||||
|
||||
if (debug)
|
||||
if (debug > 1)
|
||||
{
|
||||
Pout<< " received through "
|
||||
<< myComm.above() << " data for:" << leafID
|
||||
|
@ -342,7 +342,7 @@ void Pstream::scatterList
|
|||
label leafID = notBelowLeaves[leafI];
|
||||
toBelow << Values[leafID];
|
||||
|
||||
if (debug)
|
||||
if (debug > 1)
|
||||
{
|
||||
Pout<< " sent through "
|
||||
<< belowID << " data for:" << leafID
|
||||
|
|
Reference in a new issue