Setup logging before the simulator is initialized (#1980)

Setup logging before the simulator is initialized
This commit is contained in:
Joakim Hove
2019-08-27 22:41:48 +02:00
committed by GitHub
parent 5b857dd43e
commit c804e85bc7
22 changed files with 186 additions and 183 deletions

View File

@@ -99,5 +99,7 @@ namespace Ewoms {
int main(int argc, char** argv)
{
typedef TTAG(EclFlowProblemSimple) TypeTag;
return mainFlow<TypeTag>(argc, argv);
bool outputCout = true;
bool outputFiles = true;
return mainFlow<TypeTag>(argc, argv, outputCout, outputFiles);
}