Merge pull request #1897 from alfbr/well-logging

Moved well test messages from debug to log and prt
This commit is contained in:
Kai Bao 2019-06-20 10:47:04 +02:00 committed by GitHub
commit 1593d431ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2881,7 +2881,7 @@ namespace Opm
WellState& well_state, WellTestState& welltest_state,
Opm::DeferredLogger& deferred_logger)
{
deferred_logger.debug(" well " + name() + " is being tested for physical limits");
deferred_logger.info(" well " + name() + " is being tested for physical limits");
// some most difficult things are the explicit quantities, since there is no information
// in the WellState to do a decent initialization

View File

@ -950,7 +950,7 @@ namespace Opm
const double simulation_time, const int report_step,
const WellState& well_state, WellTestState& welltest_state, Opm::DeferredLogger& deferred_logger)
{
deferred_logger.debug(" well " + name() + " is being tested for economic limits");
deferred_logger.info(" well " + name() + " is being tested for economic limits");
WellState well_state_copy = well_state;