From 66632c794ed5fcc4ec09f0c4e6aeb2d9176ebfdc Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Thu, 14 May 2015 23:29:00 +0100 Subject: [PATCH] Removed error message --- src/foam/global/debug/debug.C | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/foam/global/debug/debug.C b/src/foam/global/debug/debug.C index 73fea8129..8681fa073 100644 --- a/src/foam/global/debug/debug.C +++ b/src/foam/global/debug/debug.C @@ -112,7 +112,7 @@ Foam::dictionary& Foam::debug::controlDict() // MB 05/2015 // Make control dict - cerr<< "Make control dict\n"; + controlDictPtr_ = new dictionary(); dictionary& cDict = *controlDictPtr_; @@ -127,9 +127,6 @@ Foam::dictionary& Foam::debug::controlDict() // Add a subDict for each switch set forAll (globalControlDictSwitchSetNames, gI) { - cerr<< "Adding subdict" - << globalControlDictSwitchSetNames.names[gI] - << "\n"; cDict.add(globalControlDictSwitchSetNames.names[gI], dictionary()); } }