Make error message stand out more with newlines

This commit is contained in:
Joakim Hove
2021-01-25 07:21:09 +01:00
parent e06bbf5731
commit 57ab9d0d95
@@ -88,8 +88,8 @@ namespace Opm {
throw;
}
catch (const std::exception& std_error) {
OpmLog::error(fmt::format("An error occured while creating the reservoir properties\n"
"Internal error: {}", std_error.what()));
OpmLog::error(fmt::format("\nAn error occured while creating the reservoir properties\n"
"Internal error: {}\n", std_error.what()));
throw;
}