diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGSolverSolve.C b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGSolverSolve.C index 5b58b1c438..42f141965b 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGSolverSolve.C +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGSolverSolve.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -131,7 +131,7 @@ Foam::solverPerformance Foam::GAMGSolver::solve if (debug >= 2) { - solverPerf.print(Info(matrix().mesh().comm())); + solverPerf.print(Info.masterStream(matrix().mesh().comm())); } } while ( @@ -631,7 +631,7 @@ void Foam::GAMGSolver::solveCoarsestLevel // // if (debug >= 2) // { - // coarseSolverPerf.print(Info(coarseComm)); + // coarseSolverPerf.print(Info.masterStream(coarseComm)); // } // // Pout<< "procAgglom: coarsestSource :" << coarsestSource << endl; @@ -679,7 +679,7 @@ void Foam::GAMGSolver::solveCoarsestLevel if (debug >= 2) { - coarseSolverPerf.print(Info(coarseComm)); + coarseSolverPerf.print(Info.masterStream(coarseComm)); } } diff --git a/src/OpenFOAM/matrices/lduMatrix/solvers/smoothSolver/smoothSolver.C b/src/OpenFOAM/matrices/lduMatrix/solvers/smoothSolver/smoothSolver.C index d073e73c37..1fa2ee70cf 100644 --- a/src/OpenFOAM/matrices/lduMatrix/solvers/smoothSolver/smoothSolver.C +++ b/src/OpenFOAM/matrices/lduMatrix/solvers/smoothSolver/smoothSolver.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -132,7 +132,7 @@ Foam::solverPerformance Foam::smoothSolver::solve if (lduMatrix::debug >= 2) { - Info(matrix().mesh().comm()) + Info.masterStream(matrix().mesh().comm()) << " Normalisation factor = " << normFactor << endl; } diff --git a/src/finiteVolume/fvMatrices/fvMatrix/fvMatrixSolve.C b/src/finiteVolume/fvMatrices/fvMatrix/fvMatrixSolve.C index 333acca086..eec5c77c71 100644 --- a/src/finiteVolume/fvMatrices/fvMatrix/fvMatrixSolve.C +++ b/src/finiteVolume/fvMatrices/fvMatrix/fvMatrixSolve.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -60,7 +60,7 @@ Foam::solverPerformance Foam::fvMatrix::solve { if (debug) { - Info(this->mesh().comm()) + Info.masterStream(this->mesh().comm()) << "fvMatrix::solve(const dictionary& solverControls) : " "solving fvMatrix" << endl; @@ -108,7 +108,7 @@ Foam::solverPerformance Foam::fvMatrix::solveSegregated { if (debug) { - Info(this->mesh().comm()) + Info.masterStream(this->mesh().comm()) << "fvMatrix::solveSegregated" "(const dictionary& solverControls) : " "solving fvMatrix" @@ -202,7 +202,7 @@ Foam::solverPerformance Foam::fvMatrix::solveSegregated if (solverPerformance::debug) { - solverPerf.print(Info(this->mesh().comm())); + solverPerf.print(Info.masterStream(this->mesh().comm())); } solverPerfVec = max(solverPerfVec, solverPerf); @@ -228,7 +228,7 @@ Foam::solverPerformance Foam::fvMatrix::solveCoupled { if (debug) { - Info(this->mesh().comm()) + Info.masterStream(this->mesh().comm()) << "fvMatrix::solveCoupled" "(const dictionary& solverControls) : " "solving fvMatrix" @@ -269,7 +269,7 @@ Foam::solverPerformance Foam::fvMatrix::solveCoupled if (SolverPerformance::debug) { - solverPerf.print(Info(this->mesh().comm())); + solverPerf.print(Info.masterStream(this->mesh().comm())); } psi.correctBoundaryConditions(); diff --git a/src/finiteVolume/fvMatrices/fvScalarMatrix/fvScalarMatrix.C b/src/finiteVolume/fvMatrices/fvScalarMatrix/fvScalarMatrix.C index 7bd9c2a2c2..8dc91d4d17 100644 --- a/src/finiteVolume/fvMatrices/fvScalarMatrix/fvScalarMatrix.C +++ b/src/finiteVolume/fvMatrices/fvScalarMatrix/fvScalarMatrix.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -61,7 +61,7 @@ Foam::fvMatrix::solver { if (debug) { - Info(this->mesh().comm()) + Info.masterStream(this->mesh().comm()) << "fvMatrix::solver(const dictionary& solverControls) : " "solver for fvMatrix" << endl; @@ -120,7 +120,7 @@ Foam::solverPerformance Foam::fvMatrix::fvSolver::solve if (solverPerformance::debug) { - solverPerf.print(Info(fvMat_.mesh().comm())); + solverPerf.print(Info.masterStream(fvMat_.mesh().comm())); } fvMat_.diag() = saveDiag; @@ -141,7 +141,7 @@ Foam::solverPerformance Foam::fvMatrix::solveSegregated { if (debug) { - Info(this->mesh().comm()) + Info.masterStream(this->mesh().comm()) << "fvMatrix::solveSegregated" "(const dictionary& solverControls) : " "solving fvMatrix" @@ -170,7 +170,7 @@ Foam::solverPerformance Foam::fvMatrix::solveSegregated if (solverPerformance::debug) { - solverPerf.print(Info(mesh().comm())); + solverPerf.print(Info.masterStream(mesh().comm())); } diag() = saveDiag;