Skip to content
Snippets Groups Projects
Commit 341213f3 authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL/BC] Fix format of messages.

parent 8a3faf0e
No related branches found
No related tags found
No related merge requests found
......@@ -56,8 +56,7 @@ ConstraintDirichletBoundaryCondition::ConstraintDirichletBoundaryCondition(
std::vector<MeshLib::Node*> const& bc_nodes = _bc_mesh.getNodes();
DBUG(
"Found {:d} nodes for constraint Dirichlet BCs for the variable {:d} "
"and "
"component {:d}",
"and component {:d}",
bc_nodes.size(), variable_id, component_id);
MeshLib::MeshSubset bc_mesh_subset{_bc_mesh, bc_nodes};
......@@ -271,8 +270,7 @@ createConstraintDirichletBoundaryCondition(
process_variables[variable_id].get().getName();
OGS_FATAL(
"<constraining_process_variable> in process variable name '{:s}' "
"at "
"geometry 'TODO' : The constraining process variable is set as "
"at geometry 'TODO' : The constraining process variable is set as "
"'{:s}', but this is not specified in the project file.",
constraining_process_variable_name,
constraining_process_variable);
......@@ -290,8 +288,7 @@ createConstraintDirichletBoundaryCondition(
{
OGS_FATAL(
"The constraint direction is '{:s}', but has to be either "
"'greater' "
"or 'lower'.",
"'greater' or 'lower'.",
constraint_direction_string);
}
bool const lower = constraint_direction_string == "lower";
......
......@@ -60,8 +60,7 @@ std::unique_ptr<NeumannBoundaryCondition> createNeumannBoundaryCondition(
{
OGS_FATAL(
"The dimension ({:d}) of the given boundary mesh '{:s}' is not "
"lower "
"than the bulk dimension ({:d}).",
"lower than the bulk dimension ({:d}).",
bc_mesh.getDimension(), bc_mesh.getName(), global_dim);
}
......
......@@ -29,8 +29,7 @@ std::unique_ptr<RobinBoundaryCondition> createRobinBoundaryCondition(
{
OGS_FATAL(
"The dimension ({:d}) of the given boundary mesh '{:s}' is not "
"lower "
"than the bulk dimension ({:d}).",
"lower than the bulk dimension ({:d}).",
bc_mesh.getDimension(), bc_mesh.getName(), global_dim);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment