Merge pull request #4741 from alfbr/improve-message

Improve message when shutting well due to convergence issues
This commit is contained in:
Bård Skaflestad
2023-07-04 14:57:53 +02:00
committed by GitHub

View File

@@ -956,7 +956,7 @@ forceShutWellByName(const std::string& wellname,
// Only log a message on the output rank. // Only log a message on the output rank.
if (terminal_output_ && well_was_shut) { if (terminal_output_ && well_was_shut) {
const std::string msg = "Well " + wellname const std::string msg = "Well " + wellname
+ " will be shut because it cannot get converged."; + " will be shut because it fails to converge.";
OpmLog::info(msg); OpmLog::info(msg);
} }