diff --git a/src/OpenFOAM/db/dictionary/functionEntries/includeEntry/includeEntry.C b/src/OpenFOAM/db/dictionary/functionEntries/includeEntry/includeEntry.C index 47b4519802382fc2eadce7b40de7b76face1dd18..d61d6f2cbdc5541524a04bdc3e96ae6a5bb3a84b 100644 --- a/src/OpenFOAM/db/dictionary/functionEntries/includeEntry/includeEntry.C +++ b/src/OpenFOAM/db/dictionary/functionEntries/includeEntry/includeEntry.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation - Copyright (C) 2018 OpenCFD Ltd. + Copyright (C) 2018-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -144,7 +144,8 @@ bool Foam::functionEntries::includeEntry::execute { if (Foam::functionEntries::includeEntry::log) { - DetailInfo << fName << endl; + // Report to stdout which file is included + Info<< fName << nl; } // Add watch on included file @@ -189,7 +190,8 @@ bool Foam::functionEntries::includeEntry::execute { if (Foam::functionEntries::includeEntry::log) { - DetailInfo << fName << endl; + // Report to stdout which file is included + Info<< fName << nl; } // Add watch on included file diff --git a/src/OpenFOAM/db/dictionary/functionEntries/includeEtcEntry/includeEtcEntry.C b/src/OpenFOAM/db/dictionary/functionEntries/includeEtcEntry/includeEtcEntry.C index 9b512fd8f3e5a4a9ca6425063499d007c574e8c2..e692adb4c4a34a204201fa290f4be36daef9e28a 100644 --- a/src/OpenFOAM/db/dictionary/functionEntries/includeEtcEntry/includeEtcEntry.C +++ b/src/OpenFOAM/db/dictionary/functionEntries/includeEtcEntry/includeEtcEntry.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2015-2017 OpenFOAM Foundation + Copyright (C) 2019-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -104,7 +105,8 @@ bool Foam::functionEntries::includeEtcEntry::execute { if (Foam::functionEntries::includeEtcEntry::log) { - DetailInfo << fName << endl; + // Report to stdout which file is included + Info<< fName << nl; } parentDict.read(ifs); return true; @@ -137,7 +139,8 @@ bool Foam::functionEntries::includeEtcEntry::execute { if (Foam::functionEntries::includeEtcEntry::log) { - DetailInfo << fName << endl; + // Report to stdout which file is included + Info<< fName << nl; } entry.read(parentDict, ifs); return true;