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

[PL/BC] Rm noisy debug messages in PVCDBC.

parent 0494bdd2
No related branches found
No related tags found
No related merge requests found
...@@ -90,12 +90,6 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( ...@@ -90,12 +90,6 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues(
if (_less && if (_less &&
local_x[0] < _constraint_threshold_parameter(t, pos).front()) local_x[0] < _constraint_threshold_parameter(t, pos).front())
{ {
DBUG(
"PrimaryVariableConstraintDirichletBoundaryCondition {:f} "
"< {:f} - value {:f} will be set for dof {:d}.",
local_x[0], _constraint_threshold_parameter(t, pos).front(),
_parameter(t, pos).front(), global_index);
bc_values.ids.emplace_back(global_index); bc_values.ids.emplace_back(global_index);
bc_values.values.emplace_back(_parameter(t, pos).front()); bc_values.values.emplace_back(_parameter(t, pos).front());
} }
...@@ -103,21 +97,9 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues( ...@@ -103,21 +97,9 @@ void PrimaryVariableConstraintDirichletBoundaryCondition::getEssentialBCValues(
local_x[0] > local_x[0] >
_constraint_threshold_parameter(t, pos).front()) _constraint_threshold_parameter(t, pos).front())
{ {
DBUG(
"PrimaryVariableConstraintDirichletBoundaryCondition {:f} "
"> {:f} - value {:f} will be set for dof {:d}.",
local_x[0], _constraint_threshold_parameter(t, pos).front(),
_parameter(t, pos).front(), global_index);
bc_values.ids.emplace_back(global_index); bc_values.ids.emplace_back(global_index);
bc_values.values.emplace_back(_parameter(t, pos).front()); bc_values.values.emplace_back(_parameter(t, pos).front());
} }
else
{
DBUG(
"PrimaryVariableConstraintDirichletBoundaryCondition "
"condition not satisfied - bc won't be set.");
}
} }
} }
} }
......
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