Merge pull request #5925 from akva2/janitoring

janitoring: use string concat instead of operator+
This commit is contained in:
Bård Skaflestad 2025-01-29 13:39:22 +01:00 committed by GitHub
commit 9fb46ab420
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -349,12 +349,10 @@ void FlowGenericVanguard::init()
{
if (comm.rank() == 0)
{
std::string message =
std::string("Option --allow-distributed-wells=true in a model with\n")
+ "multisegment wells. This feature is still experimental. You can\n"
+ "set --use-multisegment-well=false to treat the existing \n"
+ "multisegment wells as standard wells.";
OpmLog::info(message);
OpmLog::info("Option --allow-distributed-wells=true in a model with\n"
"multisegment wells. This feature is still experimental. You can\n"
"set --use-multisegment-well=false to treat the existing\n"
"multisegment wells as standard wells.");
}
comm.barrier();
}