Merge pull request #267 from laods/verbosity

Change verbosity level of warning message in transport solver
This commit is contained in:
Bård Skaflestad 2013-06-28 02:02:31 -07:00
commit 254f70e504

View File

@ -576,9 +576,11 @@ namespace Opm {
store_.pc(c) = pc;
store_.dpc(c) = dpc;
}
if (!in_range) {
std::cout << "Warning: initIteration() - s was clamped in some cells.\n";
}
if (!in_range) {
#ifdef VERBOSE
std::cout << "Warning: initIteration() - s was clamped in some cells.\n";
#endif
}
return in_range;
}