From 143ae344f5e2a92e52aa4c54855c083482f010d9 Mon Sep 17 00:00:00 2001 From: Markus Blatt Date: Thu, 28 Jan 2021 16:43:24 +0100 Subject: [PATCH] Split error message into multiple lines --- ebos/eclbasevanguard.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ebos/eclbasevanguard.hh b/ebos/eclbasevanguard.hh index f73e5207d..8e4a5532b 100644 --- a/ebos/eclbasevanguard.hh +++ b/ebos/eclbasevanguard.hh @@ -494,11 +494,11 @@ public: { if (myRank == 0) { - std::string message = std::string("Option --allow-distributed-wells=true is only allowed ") - + "if model only has only standard wells." - + "You need to provide option " - + " with --enable-multisegement-wells=false to treat " - + "existing multisegment wells as standard wells."; + std::string message = + std::string("Option --allow-distributed-wells=true is only allowed if model\n") + + "only has only standard wells. You need to provide option \n" + + " with --enable-multisegement-wells=false to treat existing \n" + + "multisegment wells as standard wells."; OpmLog::error(message); } comm.barrier();