Merge pull request #905 from blattms/do-not-throw-for-unrecognized-parallel-file

Do not throw for unrecognized file when merging log files.
This commit is contained in:
Atgeirr Flø Rasmussen
2016-11-11 15:23:42 +01:00
committed by GitHub

View File

@@ -83,10 +83,10 @@ public:
}
else
{
OPM_THROW(std::runtime_error,
"Unrecognized file with name "
std::cerr << "WARNING: Unrecognized file with name "
<< filename
<< " from parallel run.");
<< " that might stem from a parallel run."
<< std::endl;
}
}
}