Skip to content
Snippets Groups Projects
Commit 2031e44c authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] BCs/STs; Add mesh name to error message.

parent 60a897ac
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ public: ...@@ -53,7 +53,7 @@ public:
{ {
OGS_FATAL( OGS_FATAL(
"The required bulk node ids map does not exist in the boundary " "The required bulk node ids map does not exist in the boundary "
"mesh."); "mesh '%s'.", _bc_mesh.getName().c_str());
} }
} }
......
...@@ -32,7 +32,7 @@ NodalSourceTerm::NodalSourceTerm(const NumLib::LocalToGlobalIndexMap& dof_table, ...@@ -32,7 +32,7 @@ NodalSourceTerm::NodalSourceTerm(const NumLib::LocalToGlobalIndexMap& dof_table,
{ {
OGS_FATAL( OGS_FATAL(
"Required mesh property \"bulk_node_ids\" does not exists on the " "Required mesh property \"bulk_node_ids\" does not exists on the "
"source term mesh."); "source term mesh '%s'.", _st_mesh.getName().c_str());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment