Send WELSPECS report to OpmLog::info()

This commit is contained in:
Joakim Hove 2020-04-21 13:15:08 +02:00
parent 22de4aaeee
commit b082a4d02f

View File

@ -264,6 +264,9 @@ void EclipseIO::writeTimeStep(const SummaryState& st,
for (const auto& report : schedule.report_config(report_step)) {
std::stringstream ss;
RptIO::write_report(ss, report.first, report.second, schedule, report_step);
auto log_string = ss.str();
if (!log_string.empty())
OpmLog::note(log_string);
}
}
}