moved a couple of comments to inside debug statements

This commit is contained in:
andy
2008-07-03 16:58:25 +01:00
parent d23666042f
commit 02fb293fcf
2 changed files with 9 additions and 3 deletions

View File

@ -770,7 +770,10 @@ void Foam::vtkPV3Foam::addPatchNames(vtkRenderer* renderer)
true
);
Info<<"patches: " << selectedPatches <<endl;
if (debug)
{
Info<<"patches: " << selectedPatches <<endl;
}
// Find the total number of zones
// Each zone will take the patch name

View File

@ -142,8 +142,11 @@ void Foam::vtkPV3Foam::updateInformationLagrangian()
}
else
{
Info<<"no clouds identified in "
<< dbPtr_->timePath()/"lagrangian" << endl;
if (debug)
{
Info<<"no clouds identified in "
<< dbPtr_->timePath()/"lagrangian" << endl;
}
}
}