From e38b9ffcb7f5bca6a9105f650395454fdfae6490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 17 Oct 2016 13:29:11 +0200 Subject: [PATCH] Classify convergence failure as a "problem" not "error". --- opm/core/simulator/AdaptiveTimeStepping_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/core/simulator/AdaptiveTimeStepping_impl.hpp b/opm/core/simulator/AdaptiveTimeStepping_impl.hpp index 3176ce26..f5f4a2dc 100644 --- a/opm/core/simulator/AdaptiveTimeStepping_impl.hpp +++ b/opm/core/simulator/AdaptiveTimeStepping_impl.hpp @@ -306,7 +306,7 @@ namespace Opm { std::string msg; msg = "Solver convergence failed, restarting solver with new time step (" + std::to_string(unit::convert::to( newTimeStep, unit::day )) + " days).\n"; - OpmLog::error(msg); + OpmLog::problem(msg); } // reset states state = last_state;